selftests: drv-net: add missing new line in xdp_helper

Kurt and Joe report missing new line at the end of Usage.

Reviewed-by: Kurt Kanzenbach <kurt@linutronix.de>
Reviewed-by: Joe Damato <jdamato@fastly.com>
Tested-by: Joe Damato <jdamato@fastly.com>
Link: https://patch.msgid.link/20250219234956.520599-4-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Jakub Kicinski 2025-02-19 15:49:52 -08:00
parent dabd31baa3
commit bab59dcf71

View File

@ -35,7 +35,7 @@ int main(int argc, char **argv)
char byte;
if (argc != 3) {
fprintf(stderr, "Usage: %s ifindex queue_id", argv[0]);
fprintf(stderr, "Usage: %s ifindex queue_id\n", argv[0]);
return 1;
}