From 2c57714eda41ff4eeb83966cb0233bf29efd39ff Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 19 Mar 2024 04:00:56 +0200 Subject: [PATCH] Update file and directory paths --- apps/base/utest/userspace_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/base/utest/userspace_test.c b/apps/base/utest/userspace_test.c index e4cb8c9c..a48ffdb2 100644 --- a/apps/base/utest/userspace_test.c +++ b/apps/base/utest/userspace_test.c @@ -494,7 +494,7 @@ char *create_file() if (p == NULL) { path = malloc(20); - sprintf(path, "/watched_file.txt"); + sprintf(path, "/tmp/watched_file.txt"); fp = fopen(path, "w"); } else @@ -522,7 +522,7 @@ char *create_directory() if (p == NULL) { path = malloc(20); - sprintf(path, "/watched_directory"); + sprintf(path, "/tmp/watched_directory"); } else {