diff options
author | rbuj <[email protected]> | 2020-02-06 14:30:07 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-03-10 21:13:18 +0100 |
commit | 7419ff0f54fe9f1489bbc491ea78195bffe1cb76 (patch) | |
tree | 6446256752906b33ffe97b44ea6c985336ac0e04 /typing-break/drw-timer.c | |
parent | 9a8199449b9500aff28b5da4a5ac4988e49c2b92 (diff) | |
download | mate-control-center-7419ff0f54fe9f1489bbc491ea78195bffe1cb76.tar.bz2 mate-control-center-7419ff0f54fe9f1489bbc491ea78195bffe1cb76.tar.xz |
remove warnings: function declaration isn’t a prototype
Diffstat (limited to 'typing-break/drw-timer.c')
-rw-r--r-- | typing-break/drw-timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/typing-break/drw-timer.c b/typing-break/drw-timer.c index ace2c19f..a757911e 100644 --- a/typing-break/drw-timer.c +++ b/typing-break/drw-timer.c @@ -26,7 +26,7 @@ struct _DrwTimer GTimeVal start_time; }; -DrwTimer * drw_timer_new () +DrwTimer * drw_timer_new (void) { DrwTimer * timer = g_new0 (DrwTimer, 1); drw_timer_start (timer); |