summaryrefslogtreecommitdiffstats
path: root/TraceScreen.c
diff options
context:
space:
mode:
authorExplorer09 <explorer09@gmail.com>2024-04-17 16:45:46 +0800
committerBenBE <BenBE@geshi.org>2024-04-17 11:54:00 +0200
commita46b3f0a98c801b94df08598be0127e4d7db2aca (patch)
tree9a0e51e445dbb19685897d225ff847016f9c6761 /TraceScreen.c
parent6f0adfab242f40e0a0e82445abac4e574c7a97e8 (diff)
Use 'fp' name for local 'FILE*' variables.
It is inappropriate to use the 'fd' name for 'FILE*' variables. POSIX file descriptiors are of type 'int' and are distinguished from ISO C stream pointers (type 'FILE*'). Rename these variables to 'fp', which is a preferred naming in POSIX. (Note that ISO C preferred the 'stream' name for the variables.) No code changes.
Diffstat (limited to 'TraceScreen.c')
-rw-r--r--TraceScreen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TraceScreen.c b/TraceScreen.c
index 8a69b678..d421d0eb 100644
--- a/TraceScreen.c
+++ b/TraceScreen.c
@@ -113,14 +113,14 @@ bool TraceScreen_forkTracer(TraceScreen* this) {
exit(127);
}
- FILE* fd = fdopen(fdpair[0], "r");
- if (!fd)
+ FILE* fp = fdopen(fdpair[0], "r");
+ if (!fp)
goto err;
close(fdpair[1]);
this->child = child;
- this->strace = fd;
+ this->strace = fp;
return true;
err:

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