projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22ad69b
)
cmd: conitrace: replace getc() by getchar()
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Fri, 23 Oct 2020 10:46:04 +0000
(12:46 +0200)
committer
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Mon, 9 Nov 2020 16:28:17 +0000
(17:28 +0100)
This command was missed when renaming getc() to getchar().
Fixes: c670aeee3df9 ("common: rename getc() to getchar()")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
cmd/conitrace.c
patch
|
blob
|
history
diff --git
a/cmd/conitrace.c
b/cmd/conitrace.c
index 88850db541f08adc41ba18995f69fab74b6e39fc..811f5c68a9c28f43010e4b914807268137173c37 100644
(file)
--- a/
cmd/conitrace.c
+++ b/
cmd/conitrace.c
@@
-19,10
+19,10
@@
static int do_conitrace(struct cmd_tbl *cmdtp, int flag, int argc,
/* Empty input buffer */
while (tstc())
- getc();
+ getc
har
();
for (;;) {
- int c = getc();
+ int c = getc
har
();
if (first && (c == 'x' || c == 'X'))
break;