diff options
author | Campbell Barton <ideasman42@gmail.com> | 2014-07-19 13:36:13 +1000 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-11-02 14:41:20 -0500 |
commit | f83d78dd2801c7e4bee406379d3119f8852cf297 (patch) | |
tree | 72322bd80d992ead5359ed70faeeac1ae6a73a20 /src/common/util.c | |
parent | 9fb4eb5107a133a4c0492f11f02cdeb014042786 (diff) |
Warning cleanup
- ignoring const - declarations after statements - some C files didnt include own headers (risking them getting out of sync) Closes #1064
Diffstat (limited to 'src/common/util.c')
-rw-r--r-- | src/common/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/util.c b/src/common/util.c index b5ee1af2..a6c4fad8 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1526,7 +1526,7 @@ canonalize_key (char *key) } int -portable_mode () +portable_mode (void) { #ifdef WIN32 if ((_access( "portable-mode", 0 )) != -1) @@ -1543,7 +1543,7 @@ portable_mode () } int -unity_mode () +unity_mode (void) { #ifdef G_OS_UNIX const char *env = g_getenv("XDG_CURRENT_DESKTOP"); |