13 lines
701 B
Diff
13 lines
701 B
Diff
diff -u -r abiword-plugins-2.6.8.orig/tools/abicommand/xp/AbiCommand.cpp abiword-plugins-2.6.8/tools/abicommand/xp/AbiCommand.cpp
|
|
--- abiword-plugins-2.6.8.orig/tools/abicommand/xp/AbiCommand.cpp 2007-10-11 22:05:55.000000000 +0200
|
|
+++ abiword-plugins-2.6.8/tools/abicommand/xp/AbiCommand.cpp 2009-03-09 16:59:14.000000000 +0100
|
|
@@ -551,7 +551,7 @@
|
|
UT_UTF8String *pCom1 =
|
|
const_cast < UT_UTF8String * >(static_cast < const UT_UTF8String * >(pToks->getNthItem (1)));
|
|
printf(" Filename %s \n",pCom1->utf8_str());
|
|
- char *suffix = rindex (pCom1->utf8_str (), '.');
|
|
+ const char *suffix = static_cast<const char*>(rindex (pCom1->utf8_str (), '.'));
|
|
|
|
if (suffix != NULL)
|
|
{
|