summaryrefslogtreecommitdiffstats
path: root/vidix/dhahelper/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'vidix/dhahelper/test.c')
-rw-r--r--vidix/dhahelper/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vidix/dhahelper/test.c b/vidix/dhahelper/test.c
index 78f8250d99..59e356efea 100644
--- a/vidix/dhahelper/test.c
+++ b/vidix/dhahelper/test.c
@@ -27,7 +27,7 @@
#include <errno.h>
#include <fcntl.h>
#include <sys/mman.h>
-
+
#include "dhahelper.h"
int main(int argc, char *argv[])
@@ -58,13 +58,13 @@ int main(int argc, char *argv[])
printf("ret: %s\n", strerror(errno));
mem.ret = (int)mmap(NULL, (size_t)mem.size, PROT_READ, MAP_SHARED, fd, (off_t)0);
- printf("allocated to %x\n", mem.ret);
+ printf("allocated to %x\n", mem.ret);
if (argc > 1)
if (mem.ret != 0)
{
int i;
-
+
for (i = 0; i < 256; i++)
printf("[%x] ", *(int *)(mem.ret+i));
printf("\n");