diff options
Diffstat (limited to 'sysdeps/i386/strtok.S')
-rw-r--r-- | sysdeps/i386/strtok.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/i386/strtok.S b/sysdeps/i386/strtok.S index 2ef8803ef6..c38ebf90a2 100644 --- a/sysdeps/i386/strtok.S +++ b/sysdeps/i386/strtok.S @@ -269,15 +269,15 @@ L11: LreturnNULL: xorl %eax, %eax - /* Store NULL as pointer to the next character. */ + /* Store current pointer for next round. */ #ifdef USE_AS_STRTOK_R movl 12(%esp), %ecx - movl %eax, (%ecx) + movl %edx, (%ecx) #else # ifndef PIC - movl %eax, save_ptr + movl %edx, save_ptr # else - movl %eax, save_ptr@GOTOFF(%ebx) + movl %edx, save_ptr@GOTOFF(%ebx) popl %ebx # endif #endif |