e32tools/elf2e32/source/filedump.cpp
changeset 590 360bd6b35136
parent 0 044383f39525
child 666 76dc8e3e7f2e
--- a/e32tools/elf2e32/source/filedump.cpp	Wed Jun 16 16:51:40 2010 +0300
+++ b/e32tools/elf2e32/source/filedump.cpp	Wed Jun 23 16:56:47 2010 +0800
@@ -170,16 +170,16 @@
 		return 1;
 	else if (result == KErrCorrupt || result == KErrNotSupported)
 	{
-		throw InvalidE32ImageError(INVALIDE32IMAGEERROR, (char *)afileName);
+		throw InvalidE32ImageError(INVALIDE32IMAGEERROR, (char*)afileName);
 	}
 	else if (result != 0)
 	{
-		throw FileError(FILEREADERROR, (char *)afileName);
+		throw FileError(FILEREADERROR, (char*)afileName);
 	}
 
 	int dumpOptions=iParameterListInterface->DumpOptions();
 	
-	aE32Imagefile->Dump((TText*)afileName, dumpOptions);
+	aE32Imagefile->Dump(afileName, dumpOptions);
 	delete aE32Imagefile;
 	return KErrNone;
 }