aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/lib/strstr_32.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/lib/strstr_32.c')
-rw-r--r--arch/x86/lib/strstr_32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/strstr_32.c b/arch/x86/lib/strstr_32.c
index a3dafbf59dae..42e8a50303f3 100644
--- a/arch/x86/lib/strstr_32.c
+++ b/arch/x86/lib/strstr_32.c
@@ -1,9 +1,9 @@
#include <linux/string.h>
-char * strstr(const char * cs,const char * ct)
+char *strstr(const char *cs, const char *ct)
{
int d0, d1;
-register char * __res;
+register char *__res;
__asm__ __volatile__(
"movl %6,%%edi\n\t"
"repne\n\t"