diff options
Diffstat (limited to 'sys/fs/udf/osta.c')
| -rw-r--r-- | sys/fs/udf/osta.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sys/fs/udf/osta.c b/sys/fs/udf/osta.c index f79b86993367..1a083d8c26b1 100644 --- a/sys/fs/udf/osta.c +++ b/sys/fs/udf/osta.c @@ -383,7 +383,7 @@ int UDFTransName(  			int maxFilenameLen;  			/* Translate extension, and store it in ext. */  			for(index = 0; index<EXT_SIZE && -			    extIndex + index +1 < udfLen; index++ ) { +			    extIndex + index +1 < udfLen; index++) {  				current = udfName[extIndex + index + 1];  				if (IsIllegal(current) ||  				    !UnicodeIsPrint(current)) { @@ -432,7 +432,7 @@ int UDFTransName(  		/* Place a translated extension at end, if found. */  		if (hasExt) {  			newName[newIndex++] = PERIOD; -			for (index = 0;index < localExtIndex ;index++ ) { +			for (index = 0; index < localExtIndex; index++) {  				newName[newIndex++] = ext[index];  			}  		} | 
