diff options
Diffstat (limited to 'noatun/library/conversion.cpp')
-rw-r--r-- | noatun/library/conversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noatun/library/conversion.cpp b/noatun/library/conversion.cpp index 791b5554..dbbf5b09 100644 --- a/noatun/library/conversion.cpp +++ b/noatun/library/conversion.cpp @@ -136,7 +136,7 @@ void swapEndian(unsigned long length, char *buffer) #else while (length--) { - register char c=*(buffer+1); + char c=*(buffer+1); *(buffer+1)=*buffer; *(buffer)=c; buffer++; buffer++; |