diff options
author | Tom Rini <trini@konsulko.com> | 2023-08-31 12:23:36 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-31 12:23:36 -0400 |
commit | b81a024e4a37097d3dcffccb225850f8f6dc8277 (patch) | |
tree | dcfd69d6c2e7c25003767a28841f1effe7404048 /cmd/setexpr.c | |
parent | c37be6a39a338187cfb140a6a1a8d1f9550c909d (diff) | |
parent | 36b900e8bd57fec7b4c200a368883e1e59e4f27f (diff) |
Merge branch '2023-08-30-assorted-code-improvements' into next
- pcie-bcmstb improvements, nvmxip improvements, fix a corner case in
the serial uclass, send error messages to stderr in host tools, fwu
library CI state fixup, turn some setexpr diagnostic messages to debug
Diffstat (limited to 'cmd/setexpr.c')
-rw-r--r-- | cmd/setexpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/setexpr.c b/cmd/setexpr.c index 4d671e7ef12..233471f6cb7 100644 --- a/cmd/setexpr.c +++ b/cmd/setexpr.c @@ -215,7 +215,7 @@ int setexpr_regex_sub(char *data, uint data_size, char *nbuf, uint nbuf_size, if (res == 0) { if (loop == 0) { - printf("%s: No match\n", data); + debug("%s: No match\n", data); return 1; } else { break; @@ -359,7 +359,7 @@ static int regex_sub_var(const char *name, const char *r, const char *s, if (ret) return 1; - printf("%s=%s\n", name, data); + debug("%s=%s\n", name, data); return env_set(name, data); } |