Advertisement
BloodknightStudios

Untitled

Jul 12th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1.  
  2. In file included from D:\Astonia\client35\moac\dd.c:16:0:
  3. D:\Astonia\client35\moac\dd.h:24:15: warning: built-in function 'gamma' declared as non-function
  4. extern double gamma; // set me to adjust gamma, call dd_reset() afterwards
  5. ^
  6. In file included from D:\Astonia\client35\moac\dd.c:16:0:
  7. D:\Astonia\client35\moac\dd.h:227:32: warning: 'struct client_info' declared inside parameter list
  8. void dd_get_client_info(struct client_info *ci);
  9. ^
  10. D:\Astonia\client35\moac\dd.h:227:32: warning: its scope is only this definition or declaration, which is probably not what you want
  11. D:\Astonia\client35\moac\dd.c:34:40: warning: 'struct vid_cache' declared inside parameter list
  12. static void vid_add_cache_small(struct vid_cache *vn);
  13. ^
  14. D:\Astonia\client35\moac\dd.c:35:35: warning: 'struct vid_cache' declared inside parameter list
  15. static void vid_free_cache(struct vid_cache *vc);
  16. ^
  17. D:\Astonia\client35\moac\dd.c:322:6: error: conflicting types for 'dd_get_client_info'
  18. void dd_get_client_info(struct client_info *ci)
  19. ^
  20. In file included from D:\Astonia\client35\moac\dd.c:16:0:
  21. D:\Astonia\client35\moac\dd.h:227:6: note: previous declaration of 'dd_get_client_info' was here
  22. void dd_get_client_info(struct client_info *ci);
  23. ^
  24. D:\Astonia\client35\moac\dd.c: In function 'dd_reset_cache':
  25. D:\Astonia\client35\moac\dd.c:1165:20: warning: passing argument 1 of 'vid_free_cache' from incompatible pointer type
  26. vid_free_cache(systemcache[sidx].vc[v]);
  27. ^
  28. D:\Astonia\client35\moac\dd.c:35:13: note: expected 'struct vid_cache *' but argument is of type 'struct vid_cache *'
  29. static void vid_free_cache(struct vid_cache *vc);
  30. ^
  31. D:\Astonia\client35\moac\dd.c: In function 'sc_load':
  32. D:\Astonia\client35\moac\dd.c:2162:19: warning: passing argument 1 of 'vid_free_cache' from incompatible pointer type
  33. vid_free_cache(systemcache[sidx].vc[v]);
  34. ^
  35. D:\Astonia\client35\moac\dd.c:35:13: note: expected 'struct vid_cache *' but argument is of type 'struct vid_cache *'
  36. static void vid_free_cache(struct vid_cache *vc);
  37. ^
  38. D:\Astonia\client35\moac\dd.c: At top level:
  39. D:\Astonia\client35\moac\dd.c:3792:13: error: conflicting types for 'vid_add_cache_small'
  40. static void vid_add_cache_small(struct vid_cache *vn)
  41. ^
  42. D:\Astonia\client35\moac\dd.c:34:13: note: previous declaration of 'vid_add_cache_small' was here
  43. static void vid_add_cache_small(struct vid_cache *vn);
  44. ^
  45. D:\Astonia\client35\moac\dd.c:3806:13: error: conflicting types for 'vid_free_cache'
  46. static void vid_free_cache(struct vid_cache *vc)
  47. ^
  48. D:\Astonia\client35\moac\dd.c:35:13: note: previous declaration of 'vid_free_cache' was here
  49. static void vid_free_cache(struct vid_cache *vc);
  50. ^
  51. D:\Astonia\client35\moac\dd.c:35:13: warning: 'vid_free_cache' used but never defined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement