Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created March 17, 2017 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnthn/92b96619b20ca076b5cb18373cac3df9 to your computer and use it in GitHub Desktop.
Save jnthn/92b96619b20ca076b5cb18373cac3df9 to your computer and use it in GitHub Desktop.
src/strings/ops.c: In function ‘MVM_string_concatenate’:
src/strings/ops.c:415:13: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 3 has type ‘MVMuint64 {aka long unsigned int}’ [-Wformat=]
"Can't concatenate strings, required number of graphemes %llu > max allowed of %lu",
^
src/strings/ops.c:415:13: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘unsigned int’ [-Wformat=]
src/strings/ops.c: In function ‘MVM_string_repeat’:
src/strings/ops.c:523:13: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 3 has type ‘MVMuint64 {aka long unsigned int}’ [-Wformat=]
"Can't repeat string, required number of graphemes %llu > max allowed of %lu",
^
src/strings/ops.c:523:13: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘unsigned int’ [-Wformat=]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment