hal/volume_id mac.c, 1.5, 1.6 ocfs2.c, 1.1, 1.2 reiserfs.c, 1.6,
1.7 sysv.c, 1.4, 1.5
Richard Hughes
hughsient at freedesktop.org
Tue Sep 27 02:42:15 PDT 2005
Update of /cvs/hal/hal/volume_id
In directory gabe:/tmp/cvs-serv20732/volume_id
Modified Files:
mac.c ocfs2.c reiserfs.c sysv.c
Log Message:
Replace kernel-style datatypes (like _u8 and __s16) with their appropriate standard datatype.
Index: mac.c
===================================================================
RCS file: /cvs/hal/hal/volume_id/mac.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- mac.c 12 Aug 2005 22:28:30 -0000 1.5
+++ mac.c 27 Sep 2005 09:42:13 -0000 1.6
@@ -32,7 +32,7 @@
#include <string.h>
#include <errno.h>
#include <ctype.h>
-#include <asm/types.h>
+#include <stdint.h>
#include "volume_id.h"
#include "logging.h"
Index: ocfs2.c
===================================================================
RCS file: /cvs/hal/hal/volume_id/ocfs2.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ocfs2.c 13 Aug 2005 02:23:52 -0000 1.1
+++ ocfs2.c 27 Sep 2005 09:42:13 -0000 1.2
@@ -32,7 +32,7 @@
#include <string.h>
#include <errno.h>
#include <ctype.h>
-#include <asm/types.h>
+#include <stdint.h>
#include "volume_id.h"
#include "logging.h"
Index: reiserfs.c
===================================================================
RCS file: /cvs/hal/hal/volume_id/reiserfs.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- reiserfs.c 12 Aug 2005 22:28:30 -0000 1.6
+++ reiserfs.c 27 Sep 2005 09:42:13 -0000 1.7
@@ -33,7 +33,7 @@
#include <string.h>
#include <errno.h>
#include <ctype.h>
-#include <asm/types.h>
+#include <stdint.h>
#include "volume_id.h"
#include "logging.h"
Index: sysv.c
===================================================================
RCS file: /cvs/hal/hal/volume_id/sysv.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- sysv.c 12 Aug 2005 22:28:30 -0000 1.4
+++ sysv.c 27 Sep 2005 09:42:13 -0000 1.5
@@ -32,7 +32,7 @@
#include <string.h>
#include <errno.h>
#include <ctype.h>
-#include <asm/types.h>
+#include <stdint.h>
#include "volume_id.h"
#include "logging.h"
More information about the hal-commit
mailing list