blob: 5f0c4b28b2a6dbd24a3163c900112db7cbdf7fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-xfermon.c,v 1.1 2013/03/02 17:59:41 joerg Exp $
--- xfermon.c.orig 2013-03-01 14:11:21.000000000 +0000
+++ xfermon.c
@@ -59,6 +59,8 @@
#include <Xm/TextF.h>
#include "xftp.h"
+void create_xfermon_dialog(void);
+
static struct {
Widget w_dialog;
Widget w_controlArea;
@@ -109,7 +111,7 @@ show_xfermon()
/*
* create_xfermon_dialog - Create file transfer monitor.
*/
-create_xfermon_dialog()
+void create_xfermon_dialog(void)
{
static int initialized = False;
XmString label;
|