diff options
Diffstat (limited to 'src/daemon/settings.c')
-rw-r--r-- | src/daemon/settings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/settings.c b/src/daemon/settings.c index c537510..0fb1648 100644 --- a/src/daemon/settings.c +++ b/src/daemon/settings.c @@ -77,7 +77,7 @@ char *setting_im_proto(void) } /* could be a one-liner, but let's make the logic more obvious */ -int test_flag(unsigned int flag) +static int test_flag(unsigned int flag) { int ret; @@ -87,12 +87,12 @@ int test_flag(unsigned int flag) return ret; } -void set_flag(unsigned int flag) +static void set_flag(unsigned int flag) { settings.flags |= flag; } -void unset_flag(unsigned int flag) +static void unset_flag(unsigned int flag) { settings.flags &= ~flag; } |