summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:53 +0900
commit3a41a0210cd53bc86a0988762fef0c8c2bca08dd (patch)
treeaa3bc523841881bf6dea934307a145b17d945a27
parent82329dd8903ffe2350c0c1cda8682da9a35cbc35 (diff)
downloadkrusader-3a41a0210cd53bc86a0988762fef0c8c2bca08dd.tar.gz
krusader-3a41a0210cd53bc86a0988762fef0c8c2bca08dd.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--iso/libisofs/bswap.h2
-rw-r--r--iso/libisofs/isofs.c4
-rw-r--r--krusader/VFS/arc_vfs.cpp8
3 files changed, 7 insertions, 7 deletions
diff --git a/iso/libisofs/bswap.h b/iso/libisofs/bswap.h
index 95520c6..bda19c0 100644
--- a/iso/libisofs/bswap.h
+++ b/iso/libisofs/bswap.h
@@ -39,7 +39,7 @@ inline static unsigned int ByteSwap32(unsigned int x)
inline static unsigned long long int ByteSwap64(unsigned long long int x)
{
- register union { __extension__ unsigned long long int __ll;
+ union { __extension__ unsigned long long int __ll;
unsigned int __l[2]; } __x;
asm("xchgl %0,%1":
"=r"(__x.__l[0]),"=r"(__x.__l[1]):
diff --git a/iso/libisofs/isofs.c b/iso/libisofs/isofs.c
index ab13d9e..9b4307a 100644
--- a/iso/libisofs/isofs.c
+++ b/iso/libisofs/isofs.c
@@ -164,7 +164,7 @@ int ReadBootTable(readfunc *read,int sector, boot_head *head, void *udata) {
int i,end=0;
unsigned short sum;
boot_entry *defcur=NULL,*deflast=NULL;
- register struct validation_entry *ventry=NULL;
+ struct validation_entry *ventry=NULL;
head->sections=NULL;
head->defentry=NULL;
@@ -538,7 +538,7 @@ int ProcessDir(readfunc *read,int extent,int size,dircallback *callback,void *ud
*/
int JolietLevel(struct iso_volume_descriptor *ivd) {
int ret=0;
- register struct iso_supplementary_descriptor *isd;
+ struct iso_supplementary_descriptor *isd;
isd = (struct iso_supplementary_descriptor *) ivd;
diff --git a/krusader/VFS/arc_vfs.cpp b/krusader/VFS/arc_vfs.cpp
index cd0f168..c45023e 100644
--- a/krusader/VFS/arc_vfs.cpp
+++ b/krusader/VFS/arc_vfs.cpp
@@ -488,10 +488,10 @@ void arc_vfs::getFilesToPack(TQStringList* filesToPack,TQString dir_name){
if ( vfs_filesP == 0) newDir = true;
if(dir_name != "") dir_name = dir_name+"/";
- register DIR* dir = opendir(tmpDir.local8Bit()+"/"+dir_name.local8Bit());
+ DIR* dir = opendir(tmpDir.local8Bit()+"/"+dir_name.local8Bit());
if(!dir) return ;
- register struct dirent* dirEnt;
+ struct dirent* dirEnt;
TQString name;
KDE_struct_stat stat_p;
while( (dirEnt=readdir(dir)) != NULL ){
@@ -538,7 +538,7 @@ void arc_vfs::getFilesToDelete(TQStringList* filesToDelete,TQString){
}
void arc_vfs::getExtFiles(TQString dir_name){
- register DIR* dir = opendir(tmpDir.local8Bit()+"/"+dir_name.local8Bit());
+ DIR* dir = opendir(tmpDir.local8Bit()+"/"+dir_name.local8Bit());
if(!dir){
kdWarning() << "faild to opendir(): " << tmpDir.local8Bit()+"/"+dir_name.local8Bit() << endl;
return ;
@@ -546,7 +546,7 @@ void arc_vfs::getExtFiles(TQString dir_name){
if( dir_name != "") dir_name = dir_name+"/";
- register struct dirent* dirEnt;
+ struct dirent* dirEnt;
TQString name;
KDE_struct_stat stat_p;
while( (dirEnt=readdir(dir)) != NULL ){