summaryrefslogtreecommitdiff
path: root/tests/test_ppoll.c
diff options
context:
space:
mode:
authorjvoisin2023-07-09 12:27:12 +0200
committerjvoisin2023-07-09 12:27:12 +0200
commit6939c9e0c241bb348c006d07ee423ed5aeb0e707 (patch)
tree40cbb2aa1bc7d1bf501d503086179e31c57a0f7f /tests/test_ppoll.c
parentf774a4977fbc497b85417bcbc1fa9b3f3220164a (diff)
Fix a couple of warnings
Diffstat (limited to 'tests/test_ppoll.c')
-rw-r--r--tests/test_ppoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ppoll.c b/tests/test_ppoll.c
index 82b77ab..186bafe 100644
--- a/tests/test_ppoll.c
+++ b/tests/test_ppoll.c
@@ -10,6 +10,6 @@ int main(int argc, char** argv) {
10 ppoll(buffer, 14, NULL, NULL); 10 ppoll(buffer, 14, NULL, NULL);
11 CHK_FAIL_END 11 CHK_FAIL_END
12 12
13 puts(buffer); 13 puts((const char*)buffer);
14 return ret; 14 return ret;
15} 15}