summaryrefslogtreecommitdiffstats
path: root/include/md5.h
diff options
context:
space:
mode:
authorSami Kerola2011-12-01 23:10:21 +0100
committerKarel Zak2011-12-02 18:21:46 +0100
commitfbc333fec09394bf4e47707de08a65e8c0e9c288 (patch)
treecc581fb320208982e33ddc8e04850b80291109a9 /include/md5.h
parentbuild-sys: add missing headers to dist (diff)
downloadkernel-qcow2-util-linux-fbc333fec09394bf4e47707de08a65e8c0e9c288.tar.gz
kernel-qcow2-util-linux-fbc333fec09394bf4e47707de08a65e8c0e9c288.tar.xz
kernel-qcow2-util-linux-fbc333fec09394bf4e47707de08a65e8c0e9c288.zip
build-sys: check HAVE_ definitions with #ifdef [smatch scan]
Fix to `warning: undefined preprocessor identifier' messages. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'include/md5.h')
-rw-r--r--include/md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/md5.h b/include/md5.h
index 1222cf030..d997e379d 100644
--- a/include/md5.h
+++ b/include/md5.h
@@ -1,7 +1,7 @@
#ifndef MD5_H
#define MD5_H
-#if HAVE_STDINT_H
+#ifdef HAVE_STDINT_H
#include <stdint.h>
#else
typedef unsigned int uint32_t;