diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-11-28 15:00:23 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-11-28 15:00:23 +0100 |
| commit | 013b75b7d655115503397ea4284b776802605080 (patch) | |
| tree | 6b02a4e853c9fe56b96aab89d6962e8ff397007e /zip | |
| parent | 9382f127ccebdd59917c97c61d008ed0e127cd75 (diff) | |
| download | tuxcmd-modules-013b75b7d655115503397ea4284b776802605080.tar.xz | |
Consolidate boolean data types
Diffstat (limited to 'zip')
| -rw-r--r-- | zip/zip.cpp | 4 |
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"); |
