Skip to content

Commit 5211a29

Browse files
committed
mctp-client: avoid 'tag' term in argument parsing error
The 'tag' term has a specific meaning in MCTP communication, avoid using it to reference a type of argument. Since the user is dealing with arguments anyway, just call it an argument. Signed-off-by: Jeremy Kerr <[email protected]>
1 parent bc7fff7 commit 5211a29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mctp-client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ int main(int argc, char **argv)
255255
valid_type = true;
256256

257257
} else
258-
errx(EXIT_FAILURE, "invalid tag: %s", tag);
258+
errx(EXIT_FAILURE, "invalid argument: %s", tag);
259259
}
260260

261261
if (!valid_eid || !valid_type) {

0 commit comments

Comments
 (0)