]> granicus.if.org Git - zziplib/commitdiff
zzip: memdisk: fix wrong formatter
authorPatrick Steinhardt <ps@pks.im>
Tue, 21 May 2019 11:41:15 +0000 (13:41 +0200)
committerPatrick Steinhardt <ps@pks.im>
Thu, 1 Aug 2019 06:33:34 +0000 (08:33 +0200)
In `zzip_mem_disk_fdopen`, there's two debug calls with format strings
that print out the file descriptor that we're about to open. While the
first format string correctly uses "%i" to print the integer, the second
one accidentally uses "%s". Fix this by using "%i" for both.

zzip/memdisk.c

index 7c59602e324585e2665b00cd347d5acbeb69377a..9983cc2a01973134569f5601923fa92d9196e2ad 100644 (file)
@@ -114,7 +114,7 @@ zzip_mem_disk_fdopen(int fd)
     ___ ZZIP_MEM_DISK *dir = zzip_mem_disk_new();
     if (zzip_mem_disk_load(dir, disk) == -1)
     {
-       debug2("unable to load disk fd %s", fd);
+       debug2("unable to load disk fd %i", fd);
     }
     return dir;
     ____;