Xext/shm: Downgrade from error to debug log output about success
Signed-off-by: Alexander Volkov <a.volkov@rusbitech.ru> Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
319af6f471
commit
d36128a72a
|
@ -1199,7 +1199,7 @@ shm_tmpfile(void)
|
||||||
#ifdef O_TMPFILE
|
#ifdef O_TMPFILE
|
||||||
fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666);
|
fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666);
|
||||||
if (fd >= 0) {
|
if (fd >= 0) {
|
||||||
ErrorF ("Using O_TMPFILE\n");
|
DebugF ("Using O_TMPFILE\n");
|
||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
ErrorF ("Not using O_TMPFILE\n");
|
ErrorF ("Not using O_TMPFILE\n");
|
||||||
|
|
Loading…
Reference in New Issue