Advertisement
kazaaakas

sukoduotas

Feb 8th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. kazaaakas@vps1247075:/var/www/html/ircas/wapirc_0.30$ make
  2. cc -Wall -c -o web_tty.o web_tty.c
  3. cc -Wall -c -o web_tty_irc.o web_tty_irc.c
  4. cc -Wall -c -o cgi.o cgi.c
  5. cc -Wall -c -o libwap.o libwap.c
  6. cc web_tty.o web_tty_irc.o cgi.o libwap.o -o wapircd
  7. cc -Wall -c -o web_tty_in.o web_tty_in.c
  8. web_tty_in.c: In function 'write_wml':
  9. web_tty_in.c:68:18: warning: pointer targets in passing argument 1 of 'strchr' differ in signedness [-Wpointer-sign]
  10. lineend=strchr(p,'\n');
  11. ^
  12. In file included from web_tty_in.c:31:0:
  13. /usr/include/string.h:231:14: note: expected 'const char *' but argument is of type 'unsigned char *'
  14. extern char *strchr (const char *__s, int __c)
  15. ^
  16. web_tty_in.c:68:10: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
  17. lineend=strchr(p,'\n');
  18. ^
  19. web_tty_in.c:83:20: warning: pointer targets in passing argument 1 of 'strchr' differ in signedness [-Wpointer-sign]
  20. needle=strchr(p,'>');
  21. ^
  22. In file included from web_tty_in.c:31:0:
  23. /usr/include/string.h:231:14: note: expected 'const char *' but argument is of type 'unsigned char *'
  24. extern char *strchr (const char *__s, int __c)
  25. ^
  26. web_tty_in.c:83:12: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
  27. needle=strchr(p,'>');
  28. ^
  29. web_tty_in.c:98:22: warning: pointer targets in passing argument 1 of 'strchr' differ in signedness [-Wpointer-sign]
  30. needle=strchr(cursor+1,' ');
  31. ^
  32. In file included from web_tty_in.c:31:0:
  33. /usr/include/string.h:231:14: note: expected 'const char *' but argument is of type 'unsigned char *'
  34. extern char *strchr (const char *__s, int __c)
  35. ^
  36. web_tty_in.c:98:14: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
  37. needle=strchr(cursor+1,' ');
  38. ^
  39. web_tty_in.c:103:22: warning: pointer targets in passing argument 1 of 'strchr' differ in signedness [-Wpointer-sign]
  40. needle=strchr(cursor,'*');
  41. ^
  42. In file included from web_tty_in.c:31:0:
  43. /usr/include/string.h:231:14: note: expected 'const char *' but argument is of type 'unsigned char *'
  44. extern char *strchr (const char *__s, int __c)
  45. ^
  46. web_tty_in.c:103:14: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
  47. needle=strchr(cursor,'*');
  48. ^
  49. web_tty_in.c: In function 'write_card':
  50. web_tty_in.c:239:13: warning: pointer targets in passing argument 1 of 'write_wml' differ in signedness [-Wpointer-sign]
  51. write_wml(buf,commandname);
  52. ^
  53. web_tty_in.c:57:13: note: expected 'unsigned char *' but argument is of type 'char *'
  54. static void write_wml(unsigned char *p,unsigned char *commandname)
  55. ^
  56. web_tty_in.c:239:17: warning: pointer targets in passing argument 2 of 'write_wml' differ in signedness [-Wpointer-sign]
  57. write_wml(buf,commandname);
  58. ^
  59. web_tty_in.c:57:13: note: expected 'unsigned char *' but argument is of type 'char *'
  60. static void write_wml(unsigned char *p,unsigned char *commandname)
  61. ^
  62. cc web_tty_in.o cgi.o libwap.o -o wapirc.cgi
  63. kazaaakas@vps1247075:/var/www/html/ircas/wapirc_0.30$ make make && make install
  64. make: *** No rule to make target 'make'. Stop.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement