diff options
author | Mark Eichin <eichin@cygnus> | 1992-06-02 17:22:47 +0000 |
---|---|---|
committer | Mark Eichin <eichin@cygnus> | 1992-06-02 17:22:47 +0000 |
commit | 9138a2e2f6bdddcc643a3ed208093d5cc8a7023d (patch) | |
tree | a7461bc46162614482281ef2cffae2bc64073eb5 /gprof/lookup.c | |
parent | 50a39795e21751fccaf75cf4e9df1378e5fcba62 (diff) | |
download | gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.zip gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.tar.gz gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.tar.bz2 |
Makefile.in: .c.o rule needed, default one (under solaris) ignores CFLAGS
Makefile: it shouldn't be under cvs; given that it is, fix it too
arcs.c: fprintf used where printf should have been.
lookup.c: misdeclared calloc; use a cast instead.
Diffstat (limited to 'gprof/lookup.c')
-rw-r--r-- | gprof/lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gprof/lookup.c b/gprof/lookup.c index 405f320..d08a162 100644 --- a/gprof/lookup.c +++ b/gprof/lookup.c @@ -71,7 +71,7 @@ arclookup( parentp , childp ) arctype *arcp; if ( parentp == 0 || childp == 0 ) { - fprintf( "[arclookup] parentp == 0 || childp == 0\n" ); + printf( "[arclookup] parentp == 0 || childp == 0\n" ); return 0; } # ifdef DEBUG |