diff options
author | Volker Lendecke <vl@samba.org> | 2010-06-14 11:10:16 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-06-14 11:12:26 +0200 |
commit | a28b103900ea33d70c6acec150575e10caebfb9a (patch) | |
tree | 00312ecaec8f7a6130653512539b3612b7c29828 /source3/smbd | |
parent | 2edd6527294617384b55b151950a21cf08fb79d1 (diff) | |
download | samba-a28b103900ea33d70c6acec150575e10caebfb9a.tar.gz samba-a28b103900ea33d70c6acec150575e10caebfb9a.tar.xz samba-a28b103900ea33d70c6acec150575e10caebfb9a.zip |
s3: Remove some dispensable ()
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/perfcount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/perfcount.c b/source3/smbd/perfcount.c index 2c3871d404a..df71f19781f 100644 --- a/source3/smbd/perfcount.c +++ b/source3/smbd/perfcount.c @@ -61,7 +61,7 @@ NTSTATUS smb_register_perfcounter(int interface_version, const char *name, { struct smb_perfcount_module *entry = modules; - if ((interface_version != SMB_PERFCOUNTER_INTERFACE_VERSION)) { + if (interface_version != SMB_PERFCOUNTER_INTERFACE_VERSION) { DEBUG(0, ("Failed to register perfcount module.\n" "The module was compiled against " "SMB_PERFCOUNTER_INTERFACE_VERSION %d,\n" |