summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authordzwdz2022-08-22 15:02:16 +0200
committerdzwdz2022-08-22 15:02:16 +0200
commitd5cca73003febe187f5383bc80d3378966d060c0 (patch)
tree5677121b75570711272b2417104a921794825313 /src/shared
parent06beffa4f8f350aad6f6167abb7bebeecd0166ff (diff)
syscalls/fs_respond: make the *buf argument const
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/include/camellia/syscalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/include/camellia/syscalls.h b/src/shared/include/camellia/syscalls.h
index 04dfba5..634583b 100644
--- a/src/shared/include/camellia/syscalls.h
+++ b/src/shared/include/camellia/syscalls.h
@@ -62,7 +62,7 @@ long _syscall_remove(handle_t h);
long _syscall_close(handle_t h);
handle_t _syscall_fs_wait(char __user *buf, long max_len, struct fs_wait_response __user *res);
-long _syscall_fs_respond(handle_t hid, void __user *buf, long ret, int flags);
+long _syscall_fs_respond(handle_t hid, const void __user *buf, long ret, int flags);
/** Modifies the virtual address space.
*