Fix warning in test_logging.c
This commit is contained in:
+1
-1
@@ -312,7 +312,7 @@ START_TEST (test_logfile_invalid_file_after_repoen)
|
|||||||
logging_rm_subdir();
|
logging_rm_subdir();
|
||||||
|
|
||||||
rc = access(SUBDIR_FILE_NAME, W_OK);
|
rc = access(SUBDIR_FILE_NAME, W_OK);
|
||||||
fail_if(rc == NULL, "Test setup is wrong. Can still access" SUBDIR_FILE_NAME "\n");
|
fail_if(rc == 0, "Test setup is wrong. Can still access" SUBDIR_FILE_NAME "\n");
|
||||||
|
|
||||||
UC_LOGF(UC_LL_DEBUG, 0, "Lorum ipson %d\n", 1);
|
UC_LOGF(UC_LL_DEBUG, 0, "Lorum ipson %d\n", 1);
|
||||||
UC_LOGF(UC_LL_WARNING, 0, "Lorum ipson %d\n", 1);
|
UC_LOGF(UC_LL_WARNING, 0, "Lorum ipson %d\n", 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user