summaryrefslogtreecommitdiff
path: root/zip/zip.cpp
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-11-28 15:00:23 +0100
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-11-28 15:00:23 +0100
commit013b75b7d655115503397ea4284b776802605080 (patch)
tree6b02a4e853c9fe56b96aab89d6962e8ff397007e /zip/zip.cpp
parent9382f127ccebdd59917c97c61d008ed0e127cd75 (diff)
downloadtuxcmd-modules-013b75b7d655115503397ea4284b776802605080.tar.xz
Consolidate boolean data types
Diffstat (limited to 'zip/zip.cpp')
-rw-r--r--zip/zip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zip/zip.cpp b/zip/zip.cpp
index 0432b6f..577941f 100644
--- a/zip/zip.cpp
+++ b/zip/zip.cpp
@@ -940,7 +940,7 @@ VFSCopyToLocal (struct TVFSGlobs *globs, const char *sSrcName, const char *sDstN
char *dest_path;
char *dest_filename;
char *passwd;
- int res;
+ gboolean res;
if (sSrcName == NULL || sDstName == NULL || strlen (sSrcName) < 1 || strlen (sDstName) < 1) {
@@ -1022,7 +1022,7 @@ VFSCopyFromLocal (struct TVFSGlobs *globs, const char *sSrcName, const char *sDs
gboolean try_again;
char *s;
char *passwd;
- int res;
+ gboolean res;
if (sSrcName == NULL || sDstName == NULL || strlen (sSrcName) < 1 || strlen (sDstName) < 1) {
printf ("(EE) VFSCopyFromLocal: The value of 'sSrcName' or 'sDstName' is NULL or empty\n");