diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-05-17 23:35:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-05-17 23:35:12 +0000 |
commit | 17f8127d259ca21e17a64a08eea473c2339e41a7 (patch) | |
tree | 99f3a67f7f40f2ef42748e2b441f4063f6ae9786 /ringbuffer.c | |
parent | 8f53a5655cb2ccad82056ebbbab7e6ed40e5c35f (diff) | |
download | wireshark-17f8127d259ca21e17a64a08eea473c2339e41a7.tar.gz wireshark-17f8127d259ca21e17a64a08eea473c2339e41a7.tar.bz2 wireshark-17f8127d259ca21e17a64a08eea473c2339e41a7.zip |
Fix another old-style function definition.
svn path=/trunk/; revision=37224
Diffstat (limited to 'ringbuffer.c')
-rw-r--r-- | ringbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ringbuffer.c b/ringbuffer.c index 541f009469..9319cf9f51 100644 --- a/ringbuffer.c +++ b/ringbuffer.c @@ -308,7 +308,7 @@ ringbuf_libpcap_dump_close(gchar **save_file, int *err) * Frees all memory allocated by the ringbuffer */ void -ringbuf_free() +ringbuf_free(void) { unsigned int i; |