Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. equipment@T7500NP:~/Desktop/AYB2/src$ make
  2. gcc -Wall -O3 -funroll-loops -DNDEBUG -std=gnu99 -fopenmp -o xio.o -c xio.c
  3. xio.c:99:12: error: static declaration of ‘gzvprintf’ follows non-static declaration
  4. static int gzvprintf ( gzFile zfp, const char * fmt, va_list args ){
  5. ^
  6. In file included from xio.c:30:0:
  7. /usr/include/zlib.h:1758:34: note: previous declaration of ‘gzvprintf’ was here
  8. ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file,
  9. ^
  10. xio.c: In function ‘gzvprintf’:
  11. xio.c:103:14: warning: ignoring return value of ‘vasprintf’, declared with attribute warn_unused_result [-Wunused-result]
  12. vasprintf(&buf,fmt,args);
  13. ^
  14. xio.c: In function ‘BZ2_bzvprintf’:
  15. xio.c:114:14: warning: ignoring return value of ‘vasprintf’, declared with attribute warn_unused_result [-Wunused-result]
  16. vasprintf(&buf,fmt,args);
  17. ^
  18. make: *** [xio.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement