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 | ac7cd9cacf2493b52d4db50d4fd4b8b08adfe837 (patch) | |
tree | 0e9edb9c9d8fbe6ef4acde211ed6935ead9ff650 | |
parent | d8e7e73f4d484c63be3055d215823610734361ac (diff) | |
download | samba-ac7cd9cacf2493b52d4db50d4fd4b8b08adfe837.tar.gz samba-ac7cd9cacf2493b52d4db50d4fd4b8b08adfe837.tar.xz samba-ac7cd9cacf2493b52d4db50d4fd4b8b08adfe837.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 -)-----
-rw-r--r-- | source/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index 48d9a8919d4..0acc5cbfa34 100644 --- a/source/include/smb.h +++ b/source/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 { |