summaryrefslogtreecommitdiffstats
path: root/src/fw.h
diff options
context:
space:
mode:
authorGravatar Thomas Petazzoni 2016-02-12 10:18:07 +0100
committerGravatar Stefan Richter 2016-03-20 17:08:48 +0100
commit637359805c2fca70350569dffa5062e70ef01439 (patch)
tree6307d8cee4cc9e2dc2e26125adfb634eb7b2f1f0 /src/fw.h
parentconfigure.ac, Changelog, NEWS: update to version 2.1.1 (diff)
Use <stdint.h> types instead of non-standard types
The __uint32_t type is not a standard type, and not necessarily provided by all C libraries. However, <stdint.h> provides a set of standard types, which are guaranteed to be available with all C libraries. This patch therefore changes __uint32_t to uint32_t, which allows to fix the compilation with the Musl C library. This patch is already used by the Alpine Linux distribution and the Buildroot build system. Original patch from http://git.alpinelinux.org/cgit/aports/plain/main/libraw1394/fix-types.patch. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to '')
-rw-r--r--src/fw.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fw.h b/src/fw.h
index f7daf07..7ad5b97 100644
--- a/src/fw.h
+++ b/src/fw.h
@@ -12,6 +12,7 @@
#ifndef LIBRAW1394_FW_H
#define LIBRAW1394_FW_H
+#include <stdint.h>
#include <stdlib.h>
#include <byteswap.h>
@@ -48,7 +49,7 @@ struct fw_handle;
struct epoll_closure {
int (*func)(raw1394handle_t handle,
- struct epoll_closure *closure, __uint32_t events);
+ struct epoll_closure *closure, uint32_t events);
};
struct port {