From: Martin Pool Date: Wed, 5 Dec 2001 13:45:51 +0000 (+0000) Subject: Be more strict about 'enum logcode' rather than int. IRIX compiler X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/27a1234874277d06822bbaf94f4c6e6a7a716d0e Be more strict about 'enum logcode' rather than int. IRIX compiler picked this up -- quite neat. --- diff --git a/options.c b/options.c index 62b9c092..4f2f5284 100644 --- a/options.c +++ b/options.c @@ -106,7 +106,7 @@ static int modify_window_set; char *bind_address; -static void print_rsync_version(int f) +static void print_rsync_version(enum logcode f) { char const *got_socketpair = "no "; char const *hardlinks = "no ";