diff options
author | rbuj <[email protected]> | 2020-04-08 12:19:08 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2020-04-09 02:19:57 +0200 |
commit | 02b397fcee45404e01cbf529810a60ac96370d66 (patch) | |
tree | 38bba0ab1a6aa8789f05d5059d818eeca9859b1f /stickynotes | |
parent | ee0ab31ac3d8a438e94ef35e35979447c57db14f (diff) | |
download | mate-applets-02b397fcee45404e01cbf529810a60ac96370d66.tar.bz2 mate-applets-02b397fcee45404e01cbf529810a60ac96370d66.tar.xz |
stickynotes: Remove strict-prototypes warning
Diffstat (limited to 'stickynotes')
-rw-r--r-- | stickynotes/stickynotes_applet_callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stickynotes/stickynotes_applet_callbacks.c b/stickynotes/stickynotes_applet_callbacks.c index 5ab1d7b0..43ad8feb 100644 --- a/stickynotes/stickynotes_applet_callbacks.c +++ b/stickynotes/stickynotes_applet_callbacks.c @@ -77,7 +77,7 @@ stickynote_show_notes (gboolean visible) } static void -stickynote_toggle_notes_visible () +stickynote_toggle_notes_visible (void) { stickynote_show_notes(!stickynotes->visible); } |