summaryrefslogtreecommitdiffstats
path: root/tdeioslave/iso/libisofs
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-01-30 20:17:34 +0900
committerMichele Calgaro <[email protected]>2020-01-30 23:52:42 +0900
commit41e0f335b5e2ab65cf47191a5b1c32adee2c24c3 (patch)
tree016b50163495e6d8607a1205b4e29179fbf56f8a /tdeioslave/iso/libisofs
parent9c1e136983b9361291646002b2c6c1f733ee13d4 (diff)
downloadtdelibs-41e0f335b5e2ab65cf47191a5b1c32adee2c24c3.tar.gz
tdelibs-41e0f335b5e2ab65cf47191a5b1c32adee2c24c3.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit aa98dbfe80580169f3df12489a77e8b904a1d9b9)
Diffstat (limited to 'tdeioslave/iso/libisofs')
-rw-r--r--tdeioslave/iso/libisofs/bswap.h2
-rw-r--r--tdeioslave/iso/libisofs/isofs.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/tdeioslave/iso/libisofs/bswap.h b/tdeioslave/iso/libisofs/bswap.h
index 95520c6ef..bda19c09f 100644
--- a/tdeioslave/iso/libisofs/bswap.h
+++ b/tdeioslave/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/tdeioslave/iso/libisofs/isofs.c b/tdeioslave/iso/libisofs/isofs.c
index f1db4427c..58d23eba6 100644
--- a/tdeioslave/iso/libisofs/isofs.c
+++ b/tdeioslave/iso/libisofs/isofs.c
@@ -164,7 +164,7 @@ int ReadBootTable(readfunc *read,long long 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;