summaryrefslogtreecommitdiffstats
path: root/share/examples/meteor/yuvpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'share/examples/meteor/yuvpl.c')
-rw-r--r--share/examples/meteor/yuvpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/examples/meteor/yuvpl.c b/share/examples/meteor/yuvpl.c
index 243644d..704dfce 100644
--- a/share/examples/meteor/yuvpl.c
+++ b/share/examples/meteor/yuvpl.c
@@ -84,9 +84,9 @@ main()
exit(1);
}
- yuv_data = (uint8 *)mmap((caddr_t)0,SIZE,PROT_READ,0, i, (off_t)0);
+ yuv_data = (uint8 *)mmap((caddr_t)0,SIZE,PROT_READ,MAP_SHARED, i, (off_t)0);
- if (yuv_data == (uint8 *) -1) return (0);
+ if (yuv_data == (uint8 *) MAP_FAILED) return (0);
temp = ROWS * COLS;
ue = yuv_data + temp;
OpenPOWER on IntegriCloud