summaryrefslogtreecommitdiff
path: root/camlibs/toshiba
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2004-08-23 05:32:55 +0000
committerMarcus Meissner <marcus@jet.franken.de>2004-08-23 05:32:55 +0000
commitdc090f10eba631f7443f97436d052e437075d57d (patch)
tree07bd0cd45ae2fafd4d34052c9c02bb8cc9fe57a3 /camlibs/toshiba
parent7d6d18edadf152dc0abc390909af9bea2e5d2a3f (diff)
downloadlibgphoto2-dc090f10eba631f7443f97436d052e437075d57d.tar.gz
* fixed mismatch format string/arguments
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@7294 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'camlibs/toshiba')
-rw-r--r--camlibs/toshiba/pdrm11/library.c2
-rw-r--r--camlibs/toshiba/pdrm11/pdrm11.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/camlibs/toshiba/pdrm11/library.c b/camlibs/toshiba/pdrm11/library.c
index 9dd2aa4bd..63f740af1 100644
--- a/camlibs/toshiba/pdrm11/library.c
+++ b/camlibs/toshiba/pdrm11/library.c
@@ -233,7 +233,7 @@ get_info_func (CameraFilesystem *fs, const char *folder, const char *filename,
GP_DEBUG("get_info_func");
now = time(NULL);
- GP_DEBUG("now: 0x%x", now);
+ GP_DEBUG("now: 0x%lx", (long)now);
info->file.mtime = now;
info->file.fields = GP_FILE_INFO_MTIME;
diff --git a/camlibs/toshiba/pdrm11/pdrm11.c b/camlibs/toshiba/pdrm11/pdrm11.c
index 1148ba87f..ef1eb520f 100644
--- a/camlibs/toshiba/pdrm11/pdrm11.c
+++ b/camlibs/toshiba/pdrm11/pdrm11.c
@@ -106,7 +106,7 @@ int pdrm11_get_filenames(GPPort *port, CameraList *list)
}
name[12] = '\0';
- GP_DEBUG(name);
+ GP_DEBUG("%s",name);
gp_list_append(list, name, NULL);
}