diff options
-rw-r--r-- | source4/gtk/tools/gwcrontab.c | 2 | ||||
-rw-r--r-- | source4/gtk/tools/gwsam.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/gtk/tools/gwcrontab.c b/source4/gtk/tools/gwcrontab.c index aef9c15b52..ba7d2bbcd4 100644 --- a/source4/gtk/tools/gwcrontab.c +++ b/source4/gtk/tools/gwcrontab.c @@ -31,7 +31,7 @@ GtkWidget *entry_repeat_weekly; GtkWidget *entry_repeat_monthly; GtkWidget *delete; -void update_joblist() +void update_joblist(void) { TALLOC_CTX *mem_ctx = talloc_init("update_joblist"); NTSTATUS status; diff --git a/source4/gtk/tools/gwsam.c b/source4/gtk/tools/gwsam.c index 9df9698ba9..a8cf3f2a45 100644 --- a/source4/gtk/tools/gwsam.c +++ b/source4/gtk/tools/gwsam.c @@ -27,13 +27,13 @@ struct dcerpc_pipe *sam_pipe = NULL; struct policy_handle domain_handle; GtkWidget *mainwin; -void update_grouplist() +void update_grouplist(void) { if(!sam_pipe) return; //FIXME } -void update_userlist() +void update_userlist(void) { NTSTATUS status; struct samr_EnumDomainUsers r; |