1
0
mirror of https://github.com/artizirk/dvhtool.git synced 2024-10-18 03:41:00 +03:00
dvhtool/warn_type_guess.diff
2020-12-29 00:34:21 +02:00

13 lines
296 B
Diff

--- a/dvhlib.h
+++ b/dvhlib.h
@@ -3,7 +3,8 @@ #include "config.h"
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#else
-typedef unsigned int uint32_t; /* A guess ... */
+ #warning Guessing type of uint32_t
+ typedef unsigned int uint32_t; /* A guess ... */
#endif
#include "dvh.h"