From 14d6ee34de8935cb3ef59820fabf98d588dab11f Mon Sep 17 00:00:00 2001 From: "Christopher R. Hertel" Date: Mon, 16 Mar 1998 20:07:22 +0000 Subject: Lint was complaining about the following typedef in smb.h: 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include/smb.h') diff --git a/source3/include/smb.h b/source3/include/smb.h index 48d9a8919d..0acc5cbfa3 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -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 { -- cgit