diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-07-28 16:35:51 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:50:43 +0200 |
commit | 4d51150ca0aae979718ac10030df85421b763cd1 (patch) | |
tree | a824a83feefca6695fbe1072b3d724290b07af1f /src/cookies.c | |
parent | a9950b3aca2a264e0ee1da1e2a29d3be11e6606c (diff) |
Make Dillo C99 standard compliant
Reviewed-by: dogma
Diffstat (limited to 'src/cookies.c')
-rw-r--r-- | src/cookies.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cookies.c b/src/cookies.c index 589c244f..c2381e04 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -2,7 +2,7 @@ * File: cookies.c * * Copyright 2001 Lars Clausen <lrclause@cs.uiuc.edu> - * Jörgen Viksell <jorgen.viksell@telia.com> + * Jörgen Viksell <jorgen.viksell@telia.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -132,7 +132,7 @@ void a_Cookies_init(void) /** * Flush cookies to disk and free all the memory allocated. */ -void a_Cookies_freeall() +void a_Cookies_freeall(void) { } |