X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibposix.so_src%2Ffcntl.c;h=180a644a8b9c4826366d75137ff799e48908c36b;hb=6a28fd66345b484f9dfa5dba869888becdaf7112;hp=76d6f6be1b537379f70afc81e274363eef75f2bf;hpb=4d184c30a3385600c0d87a2f93b4259c8c973e73;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libposix.so_src/fcntl.c b/Usermode/Libraries/libposix.so_src/fcntl.c index 76d6f6be..180a644a 100644 --- a/Usermode/Libraries/libposix.so_src/fcntl.c +++ b/Usermode/Libraries/libposix.so_src/fcntl.c @@ -43,8 +43,8 @@ int fcntl(int fd, int cmd, ...) a_flags |= OPENFLAG_APPEND; // TODO: Extra flags for F_SETFL - _SysDebug("fcntl(%i, F_SETFL, %i)", fd, p_flags); ret = _SysFDFlags(fd, mask, a_flags); + _SysDebug("fcntl(%i, F_SETFL, 0x%lx) = Acess 0x%x", fd, p_flags, ret); if(ret != -1) ret = 0;