]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
erf-dag: fix typo in header guard
authorEric Leblond <eric@regit.org>
Thu, 5 Dec 2013 23:35:36 +0000 (00:35 +0100)
committerVictor Julien <victor@inliniac.net>
Mon, 9 Dec 2013 10:39:41 +0000 (11:39 +0100)
Spotted out by clang:
 source-erf-dag.h|25 col 9| warning: '__SOURCE_ERR_DAG_H__'
 is used as a header guard here, followed by #define of a different macro
 [-Wheader-guard]

src/source-erf-dag.h

index 2b718e1fa245c57774ee27dc62b83d1f74bf077b..e712798b870191cd2138de562bce2ce9fc507e11 100644 (file)
@@ -22,7 +22,7 @@
  * \author Jason MacLulich <jason.maclulich@endace.com>
  */
 
-#ifndef __SOURCE_ERR_DAG_H__
+#ifndef __SOURCE_ERF_DAG_H__
 #define __SOURCE_ERF_DAG_H__
 
 void TmModuleReceiveErfDagRegister(void);