Browse Source

* imdb-1to2.c : proper size modifier for ssize_t

master
Alex 'AdUser' Z 9 years ago
parent
commit
115e77a725
  1. 4
      src/imdb-1to2.c

4
src/imdb-1to2.c

@ -76,7 +76,7 @@ int main(int argc, char **argv) {
lseek(out, rec_first * IMDB_REC_LEN, SEEK_SET);
bytes = read(in, in_buf, IMDB_REC_LEN * records);
if (bytes != (ssize_t) records * IMDB_REC_LEN) {
printf("Read size mismatch, expected %lu, got: %i\n",
printf("Read size mismatch, expected %lu, got: %zi\n",
IMDB_REC_LEN * records, bytes);
exit(EXIT_FAILURE);
}
@ -89,7 +89,7 @@ int main(int argc, char **argv) {
}
bytes = write(out, out_buf, IMDB_REC_LEN * records);
if (bytes != (ssize_t) records * IMDB_REC_LEN) {
printf("Write size mismatch, expected %lu, got: %i\n",
printf("Write size mismatch, expected %lu, got: %zi\n",
IMDB_REC_LEN * records, bytes);
exit(EXIT_FAILURE);
}

Loading…
Cancel
Save