From 0c9e076a4ab62782b73ac09fb45fd9da0df19aec Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Jan 2020 20:17:37 +0900 Subject: Removed explicit usage of the 'register' keyword. Signed-off-by: Michele Calgaro (cherry picked from commit 6db8697910438fd063598f66a73b68d2dcd70a36) --- mpeglib/lib/util/audio/audioIO_BeOS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpeglib/lib/util/audio/audioIO_BeOS.cpp') 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; -- cgit v1.2.1