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/history.c | |
parent | a9950b3aca2a264e0ee1da1e2a29d3be11e6606c (diff) |
Make Dillo C99 standard compliant
Reviewed-by: dogma
Diffstat (limited to 'src/history.c')
-rw-r--r-- | src/history.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history.c b/src/history.c index de77b5c9..49541dfd 100644 --- a/src/history.c +++ b/src/history.c @@ -33,7 +33,7 @@ static int history_size_max = 16; /** * Debug procedure. */ -void History_show() +void History_show(void) { int i; @@ -149,7 +149,7 @@ void a_History_set_title_by_url(const DilloUrl *url, const char *title) /** * Free all the memory used by this module */ -void a_History_freeall() +void a_History_freeall(void) { int i; |