mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-03 16:20:18 +01:00
tests/exynos: replace return by break
The 'usage' function already does exit(0), so that this 'return -EINVAL' is never called. Just put a break there to avoid confusion. Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de> Acked-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
parent
7da8f07274
commit
8d8bbbb972
1 changed files with 1 additions and 1 deletions
|
|
@ -689,7 +689,7 @@ int main(int argc, char **argv)
|
|||
break;
|
||||
default:
|
||||
usage(argv[0]);
|
||||
return -EINVAL;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue