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:
Alexander Volkov 2018-03-12 15:12:10 +03:00 committed by Adam Jackson
parent 319af6f471
commit d36128a72a
1 changed files with 1 additions and 1 deletions

View File

@ -1199,7 +1199,7 @@ shm_tmpfile(void)
#ifdef O_TMPFILE
fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666);
if (fd >= 0) {
ErrorF ("Using O_TMPFILE\n");
DebugF ("Using O_TMPFILE\n");
return fd;
}
ErrorF ("Not using O_TMPFILE\n");