diff options
author | infirit <[email protected]> | 2014-11-22 23:03:45 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-22 23:03:45 +0100 |
commit | 4a0f31e50b9a3703bde65a3ecd681058d4ab0e93 (patch) | |
tree | 0ff25c3eb7d4a622d2b9db0273adce4339de2766 /src/fr-command-alz.c | |
parent | 246d3cdb024f50f27fb938f143936ace5337cf05 (diff) | |
download | engrampa-4a0f31e50b9a3703bde65a3ecd681058d4ab0e93.tar.bz2 engrampa-4a0f31e50b9a3703bde65a3ecd681058d4ab0e93.tar.xz |
fixed missing prototype warning
From FR commit: fe3e6aa60ff370fb21475cf621fd86ad78c9303a
From: Paolo Bacchilega <[email protected]>
Diffstat (limited to 'src/fr-command-alz.c')
-rw-r--r-- | src/fr-command-alz.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fr-command-alz.c b/src/fr-command-alz.c index 42c0b26..7b45b5c 100644 --- a/src/fr-command-alz.c +++ b/src/fr-command-alz.c @@ -203,7 +203,7 @@ static void list__begin (gpointer data) { FrCommandAlz *comm = data; - + comm->list_started = FALSE; comm->invalid_password = FALSE; } @@ -301,14 +301,14 @@ fr_command_alz_handle_error (FrCommand *comm, const char *alz_mime_type[] = { "application/x-alz", NULL }; -const char ** +static const char ** fr_command_alz_get_mime_types (FrCommand *comm) { return alz_mime_type; } -FrCommandCap +static FrCommandCap fr_command_alz_get_capabilities (FrCommand *comm, const char *mime_type, gboolean check_command) |