Page 1 of 1

vfprintf.c: No such file ...

Posted: Thu Nov 29, 2001 11:13 am
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.

vfprintf.c: No such file ...

Posted: Thu Nov 29, 2001 11:50 am
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.