[MPlayer-cvslog] r34799 - in trunk/osdep: shmem.c shmem.h
ib
subversion at mplayerhq.hu
Sun Mar 4 19:42:46 CET 2012
Author: ib
Date: Sun Mar 4 19:42:45 2012
New Revision: 34799
Log:
Correct r34798.
The header only needs stdint.h while the C file needs inttypes.h.
Modified:
trunk/osdep/shmem.c
trunk/osdep/shmem.h
Modified: trunk/osdep/shmem.c
==============================================================================
--- trunk/osdep/shmem.c Sun Mar 4 17:20:47 2012 (r34798)
+++ trunk/osdep/shmem.c Sun Mar 4 19:42:45 2012 (r34799)
@@ -36,6 +36,7 @@
#endif
#include <sys/socket.h>
#include <fcntl.h>
+#include <inttypes.h>
#include "mp_msg.h"
#include "shmem.h"
Modified: trunk/osdep/shmem.h
==============================================================================
--- trunk/osdep/shmem.h Sun Mar 4 17:20:47 2012 (r34798)
+++ trunk/osdep/shmem.h Sun Mar 4 19:42:45 2012 (r34799)
@@ -19,7 +19,7 @@
#ifndef MPLAYER_SHMEM_H
#define MPLAYER_SHMEM_H
-#include <inttypes.h>
+#include <stdint.h>
void* shmem_alloc(int64_t size);
void shmem_free(void* p,int64_t size);
More information about the MPlayer-cvslog
mailing list