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 /gvfs/gvfs.c | |
| parent | 9382f127ccebdd59917c97c61d008ed0e127cd75 (diff) | |
| download | tuxcmd-modules-013b75b7d655115503397ea4284b776802605080.tar.xz | |
Consolidate boolean data types
Diffstat (limited to 'gvfs/gvfs.c')
| -rw-r--r-- | gvfs/gvfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gvfs/gvfs.c b/gvfs/gvfs.c index d72b417..6ef3a83 100644 --- a/gvfs/gvfs.c +++ b/gvfs/gvfs.c @@ -131,10 +131,10 @@ ask_password_cb (GMountOperation *op, struct TVFSGlobs *globs; char *username; char *password; - int anonymous; - char *domain; + gboolean anonymous; + char *domain; TVFSPasswordSave password_save; - int result; + gboolean result; globs = (struct TVFSGlobs*) user_data; |
