vfprintf.c: No such file ...

Post Reply
basement_addict
Posts: 78
Joined: Mon Nov 19, 2001 5:20 pm

vfprintf.c: No such file ...

Post by basement_addict »

I get this when I try to debug a c program (with gdb)compiled from txtocf (unmodified source)


Program received signal SIGSEGV, Segmentation fault.
0x4008077d in buffered_vfprintf (s=0x829f918, format=0x829a540 "%03d ", args=0xbffffa38) at vfprintf.c:1767
1767 vfprintf.c: No such file or directory.
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

vfprintf.c: No such file ...

Post by mark »

That just means you don't have the source code to vprintf (or the rest of the printf family) as would be expected. Crashes in printf are usually due to passing bad arguments. Go up your stack and see what is being passed. Debugging your C code is beyond the scope of tech support.
Post Reply