Print a gint64 the right way.

svn path=/trunk/; revision=21976
This commit is contained in:
Guy Harris 2007-05-29 06:16:24 +00:00
parent 76729e5d0f
commit 267a2cbf02
1 changed files with 2 additions and 1 deletions

View File

@ -494,7 +494,8 @@ catapult_dct2000_seek_read(wtap *wth, gint64 seek_off,
/* If get here, must have failed */
*err = errno;
*err_info = g_strdup_printf("catapult dct2000: seek_read failed to read/parse "
"line at position %lld", (long long) seek_off);
"line at position %" G_GINT64_MODIFIER "d",
seek_off);
return FALSE;
}