Skip to content

Commit c6f8a6b

Browse files
committed
fix typo in conditional include stopping stdint.h from being included
fixes gitub issue #105
1 parent 9751030 commit c6f8a6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/proto.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
#include "config.h"
55

6-
#ifdef HAVE_STDINT_H_
6+
#ifdef HAVE_STDINT_H
77
#include <stdint.h>
8-
#elif defined(HAVE_INTTYPES_H_)
8+
#elif defined(HAVE_INTTYPES_H)
99
#include <inttypes.h>
1010
#endif
1111

0 commit comments

Comments
 (0)