From: Wayne Davison Date: Sun, 2 May 2004 16:34:33 +0000 (+0000) Subject: Got rid of trailing comma in an enum. X-Git-Tag: v2.6.3pre1~317 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c4d61b0468f000d7c028da773d38783e20249aa;p=thirdparty%2Frsync.git Got rid of trailing comma in an enum. --- diff --git a/rsync.h b/rsync.h index d66657ae..ea8667c2 100644 --- a/rsync.h +++ b/rsync.h @@ -123,7 +123,7 @@ enum msgcode { MSG_DATA=0, /* raw data on the multiplexed stream */ MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */ MSG_REDO=4, /* reprocess indicated flist index */ - MSG_DONE=5, /* current phase is done */ + MSG_DONE=5 /* current phase is done */ }; #include "errcode.h"