diff options
author | Samuel Lidén Borell <samuel@slbdata.se> | 2009-06-25 18:08:16 +0200 |
---|---|---|
committer | Samuel Lidén Borell <samuel@slbdata.se> | 2010-01-02 22:30:11 +0100 |
commit | 6b7afb9c99328c4d33eb59cbd420c171d5006338 (patch) | |
tree | 3770eeaa172d6859ddb7f92ea66253e8c6440157 /plugin/ipc.c | |
parent | 9e52999d82925306d8d85983808dcaef638bbd0d (diff) | |
download | fribid-6b7afb9c99328c4d33eb59cbd420c171d5006338.tar.gz fribid-6b7afb9c99328c4d33eb59cbd420c171d5006338.tar.bz2 fribid-6b7afb9c99328c4d33eb59cbd420c171d5006338.zip |
Fixed a compiler warning on FreeBSD
Diffstat (limited to 'plugin/ipc.c')
-rw-r--r-- | plugin/ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ipc.c b/plugin/ipc.c index 5f48856..51c65aa 100644 --- a/plugin/ipc.c +++ b/plugin/ipc.c @@ -23,7 +23,7 @@ */ #define _BSD_SOURCE 1 -#define _POSIX_C_SOURCE 199012 +#define _POSIX_C_SOURCE 200112 #include <stdbool.h> #include <stdlib.h> #include <stdio.h> |