summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Kukawka <danny.kukawka@web.de>2010-03-15 18:51:42 +0100
committerDanny Kukawka <danny.kukawka@web.de>2010-03-15 19:18:43 +0100
commitbcbd8cb90b2570187417c0579530c36576923f73 (patch)
treeb6cd927377ea69999b6add9611b9c56461b23d33
parent829968ed2ace38908db3ead8204d544d7198159f (diff)
fixed compiler warnings from cgcc
Fixed compiler warnings from cgcc.
-rw-r--r--tools/hal-device.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/tools/hal-device.c b/tools/hal-device.c
index 38458a5f..c82518b8 100644
--- a/tools/hal-device.c
+++ b/tools/hal-device.c
@@ -74,11 +74,6 @@ int add_udi(LibHalContext *hal_ctx, char *arg);
void process_property(LibHalContext *hal_ctx, char *buf, lh_prop_t **prop);
int add_properties(LibHalContext *hal_ctx, new_dev_t *nd, lh_prop_t *prop);
lh_prop_t *free_properties(lh_prop_t *prop);
-static char *skip_space(char *s);
-static char *skip_non_eq_or_space(char *s);
-static char *skip_number(char *s);
-static char *skip_nonquote(char *s);
-
new_dev_t new_dev;
@@ -89,11 +84,11 @@ struct {
char *udi;
} opt;
-struct option options[] = {
+static struct option options[] = {
{ "remove", 1, NULL, 'r' },
{ "add", 1, NULL, 'a' },
{ "help", 0, NULL, 'h' },
- { 0, 0, 0, 0 }
+ { NULL , 0, NULL , 0 }
};
@@ -168,7 +163,7 @@ int main(int argc, char **argv)
}
-void help()
+void help(void)
{
fprintf(stderr,
"usage: hal-device [--help] [--add udi] [--remove udi] [udi]\n"
@@ -419,7 +414,7 @@ int add_udi(LibHalContext *hal_ctx, char *arg)
}
-char *skip_space(char *s)
+static char *skip_space(char *s)
{
while (isspace(*s)) s++;
@@ -427,7 +422,7 @@ char *skip_space(char *s)
}
-char *skip_non_eq_or_space(char *s)
+static char *skip_non_eq_or_space(char *s)
{
while (*s && *s != '=' && !isspace(*s))
s++;
@@ -435,8 +430,7 @@ char *skip_non_eq_or_space(char *s)
return s;
}
-
-char *skip_number(char *s)
+static char *skip_number(char *s)
{
while (*s == '-' || *s == '+' || *s == '.' || isdigit(*s))
s++;
@@ -444,8 +438,7 @@ char *skip_number(char *s)
return s;
}
-
-char *skip_nonquote(char *s)
+static char *skip_nonquote(char *s)
{
while (*s && *s != '\'')
s++;