summaryrefslogtreecommitdiffstats
path: root/noatun/library/conversion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/conversion.cpp')
-rw-r--r--noatun/library/conversion.cpp2
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++;