summaryrefslogtreecommitdiffstats
path: root/libopkg/args.h
diff options
context:
space:
mode:
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-11-05 19:50:12 (EST)
committer graham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-11-05 19:50:12 (EST)
commita6502c7951410e25df67c621165581ebd99fbb0f (patch)
treedd72c34d515c73e733b03f9b5110bafd2cf83862 /libopkg/args.h
parentef04881ebc73c33de134a10b3cb8bb69f8008752 (diff)
Remove some bogus error checking and return void instead of int.
git-svn-id: http://opkg.googlecode.com/svn/trunk@266 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/args.h')
-rw-r--r--libopkg/args.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/args.h b/libopkg/args.h
index e8bb78b..7992844 100644
--- a/libopkg/args.h
+++ b/libopkg/args.h
@@ -70,7 +70,7 @@ typedef struct args args_t;
#define ARGS_DEFAULT_VERBOSITY 1
#define ARGS_DEFAULT_AUTOREMOVE 0
-int args_init(args_t *args);
+void args_init(args_t *args);
void args_deinit(args_t *args);
int args_parse(args_t *args, int argc, char *argv[]);
void args_usage(char *complaint);