Skip to content
Commit 59d309f9 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jason Wessel
Browse files

kgdb: Replace strstr() by strchr() for single-character needles



Some versions of gcc replace calls to strstr() with single-character
"needle" string parameters by calls to strchr() behind our back.
This causes linking errors if strchr() is defined as an inline function
in <asm/string.h> (e.g. on m68k, which BTW doesn't have kgdb support).

Prevent this by explicitly calling strchr() instead.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarJason Wessel <jason.wessel@windriver.com>
parent b4f1b67b
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment