Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Error message (clang stderr):
  2. src/main.c:58:23: error: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Werror,-Wformat]
  3. printf("%d %d\n", matice->radku, matice->sloupcu);
  4. ~~ ^~~~~~~~~~~~~
  5. %zu
  6. src/main.c:58:38: error: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Werror,-Wformat]
  7. printf("%d %d\n", matice->radku, matice->sloupcu);
  8. ~~ ^~~~~~~~~~~~~~~
  9. %zu
  10. 2 errors generated.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement