summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/util/audio
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:37 +0900
commit6db8697910438fd063598f66a73b68d2dcd70a36 (patch)
tree17ad616e4add01128162bad2e8b2aec21ebd18de /mpeglib/lib/util/audio
parentc1ac60f0fc2ba193f7219d25d727dec4fc97fd1b (diff)
downloadtdemultimedia-6db8697910438fd063598f66a73b68d2dcd70a36.tar.gz
tdemultimedia-6db8697910438fd063598f66a73b68d2dcd70a36.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'mpeglib/lib/util/audio')
-rw-r--r--mpeglib/lib/util/audio/audioIO_BeOS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpeglib/lib/util/audio/audioIO_BeOS.cpp b/mpeglib/lib/util/audio/audioIO_BeOS.cpp
index ae4cf5a1..ff73cd57 100644
--- a/mpeglib/lib/util/audio/audioIO_BeOS.cpp
+++ b/mpeglib/lib/util/audio/audioIO_BeOS.cpp
@@ -126,7 +126,7 @@ int audioRead(char *buffer, int count)
{
//printf("acquiring ok_to_read (%d bytes)\n", count);
if (acquire_sem(ok_to_read)==B_NO_ERROR) {
- for (register int i=0; i < count;i++) {
+ for (int i=0; i < count;i++) {
*(buffer++)+=*(readbase++);
}
bytes_in_streambuf-=count;