Lint was complaining about the following typedef in smb.h:
authorChristopher R. Hertel <crh@samba.org>
Mon, 16 Mar 1998 20:07:22 +0000 (20:07 +0000)
committerChristopher R. Hertel <crh@samba.org>
Mon, 16 Mar 1998 20:07:22 +0000 (20:07 +0000)
typedef enum
{
  P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE,
} parm_class;

I removed the trailing comma.  Chris -)-----
(This used to be commit ac7cd9cacf2493b52d4db50d4fd4b8b08adfe837)

source3/include/smb.h

index 48d9a8919d429d8708f01531480b0d07b9baa6d2..0acc5cbfa340f79981fe8a7a8f80de20ec278186 100644 (file)
@@ -618,7 +618,7 @@ typedef enum
 
 typedef enum
 {
-  P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE,
+  P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
 } parm_class;
 
 struct enum_list {