Skip to content
Snippets Groups Projects
Commit 49c803af authored by PeiYong Zhang's avatar PeiYong Zhang
Browse files

to build -miconv on hpux

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174341 13f79535-47bb-0310-9956-ffa450edef68
parent fbf83bd3
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -56,6 +56,9 @@
/*
* $Log$
* Revision 1.7 2002/11/08 17:06:15 peiyongz
* to build -miconv on hpux
*
* Revision 1.6 2002/11/04 15:24:50 tng
* C++ Namespace Support.
*
......@@ -160,7 +163,11 @@ MsgCatFormatter::nextMessage(const XMLCh* const msgText
// bother checking, just do it simple and stupid.
//
char* outData = fTranscoder->transcode(msgText);
fwprintf(fOutFl, L"%3d %S\n", curId, outData);
//
// on hp, it is required that message line shall start with number
// w/o leading space.
//
fwprintf(fOutFl, L"%d %S\n", curId, outData);
delete [] outData;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment