From 824abb5a65c1de35259818956e22a24c33f318b4 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 5 Jan 2009 14:48:03 +0000 Subject: Add missing 'void' keyword to parameterless function declarations. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28267 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/realcodecs/sipr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'TOOLS/realcodecs/sipr.c') diff --git a/TOOLS/realcodecs/sipr.c b/TOOLS/realcodecs/sipr.c index ee9990d399..d14996aa2e 100644 --- a/TOOLS/realcodecs/sipr.c +++ b/TOOLS/realcodecs/sipr.c @@ -73,7 +73,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -169,7 +169,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -184,11 +184,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; -- cgit v1.2.3