summaryrefslogtreecommitdiffstats
path: root/TraceScreen.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2023-04-11 22:49:39 +0200
committerBenny Baumann <BenBE@geshi.org>2023-04-11 22:50:18 +0200
commitda255cb33fd8ddd233232850f9465e6ddb47015f (patch)
tree488374400faded42a87dab75b280261aa4d24492 /TraceScreen.c
parentc878343784f23d7cb18ccec6aa034f01aee8069e (diff)
Minor code formatting consistency fixes
Diffstat (limited to 'TraceScreen.c')
-rw-r--r--TraceScreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TraceScreen.c b/TraceScreen.c
index 2aa0781b..e8f55ff5 100644
--- a/TraceScreen.c
+++ b/TraceScreen.c
@@ -92,7 +92,7 @@ bool TraceScreen_forkTracer(TraceScreen* this) {
xSnprintf(buffer, sizeof(buffer), "%d", this->super.process->pid);
// Use of NULL in variadic functions must have a pointer cast.
// The NULL constant is not required by standard to have a pointer type.
- execlp("strace", "strace", "-T", "-tt", "-s", "512", "-p", buffer, (char *)NULL);
+ execlp("strace", "strace", "-T", "-tt", "-s", "512", "-p", buffer, (char*)NULL);
// Should never reach here, unless execlp fails ...
const char* message = "Could not execute 'strace'. Please make sure it is available in your $PATH.";

© 2014-2024 Faster IT GmbH | imprint | privacy policy