aboutsummaryrefslogtreecommitdiffstats
path: root/u3.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-05-17 22:18:32 +0000
committerGuy Harris <guy@alum.mit.edu>2011-05-17 22:18:32 +0000
commit1372515b029def7cfb5f3004ca0cca9c04ae18e2 (patch)
treefbda41e147559bc96c05c9840a765d96a41c9633 /u3.c
parent592f0ba6da8cce7a4189d73cc787185c37623511 (diff)
More eradication of old-style function definitions.
svn path=/trunk/; revision=37216
Diffstat (limited to 'u3.c')
-rw-r--r--u3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/u3.c b/u3.c
index ec15202540..e26731e288 100644
--- a/u3.c
+++ b/u3.c
@@ -61,7 +61,7 @@ static gchar *newpath = NULL;
static char *u3_change_path(char *path, const char *old, const char *new);
-gboolean u3_active()
+gboolean u3_active(void)
{
return (
@@ -108,7 +108,7 @@ void u3_runtime_info(GString *str)
}
-void u3_register_pid()
+void u3_register_pid(void)
{
int pid;
int pid_fd;
@@ -142,7 +142,7 @@ void u3_register_pid()
}
-void u3_deregister_pid()
+void u3_deregister_pid(void)
{
if(pid_file) {
/* we don't care if we succeed or fail - u3utils may have deleted the file */