diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-03-16 20:07:22 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-03-16 20:07:22 +0000 |
commit | 14d6ee34de8935cb3ef59820fabf98d588dab11f (patch) | |
tree | 188e58b3756064da5cc20426a0c2ee021e5d4bbd /source3 | |
parent | 2f13846c4e15a724cafed05c73c725984ad3ae1c (diff) | |
download | samba-14d6ee34de8935cb3ef59820fabf98d588dab11f.tar.gz samba-14d6ee34de8935cb3ef59820fabf98d588dab11f.tar.bz2 samba-14d6ee34de8935cb3ef59820fabf98d588dab11f.zip |
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)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |