summaryrefslogtreecommitdiff
path: root/lib9p/tests
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-17 13:06:51 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-17 13:11:00 -0600
commit037df4afccb4577351f8155a0b9a36825ac7eb15 (patch)
treeb03f0e5abfd0602df56d7548c161966de8e74895 /lib9p/tests
parentef72481ffee3403dc50e93b5686c30ed841e0257 (diff)
Tidy #includes: We don't use PRI* anymore
Diffstat (limited to 'lib9p/tests')
-rw-r--r--lib9p/tests/test_server/fs_whoami.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib9p/tests/test_server/fs_whoami.c b/lib9p/tests/test_server/fs_whoami.c
index 8d9752a..7e1d635 100644
--- a/lib9p/tests/test_server/fs_whoami.c
+++ b/lib9p/tests/test_server/fs_whoami.c
@@ -4,8 +4,9 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
-#include <stdio.h> /* for snprintf() */
-#include <stdlib.h> /* for realloc(), free() */
+#include <inttypes.h> /* for PRI* */
+#include <stdio.h> /* for snprintf() */
+#include <stdlib.h> /* for realloc(), free() */
#include <libmisc/alloc.h>