Skip to content
Snippets Groups Projects
Commit 65f17e13 authored by Luigi Scarso's avatar Luigi Scarso
Browse files

fixed casting (tags).

parent 99a763e9
No related branches found
No related tags found
No related merge requests found
......@@ -1201,7 +1201,7 @@ static long pack_real(card8 * dest, long destlen, double value)
}
}
res = sprintf(local_work_buffer, "%1.14g", value);
if ( (dest>work_buffer) && (dest-((card8*)work_buffer))<(res+1)) {
if ( (dest>((card8*)(work_buffer))) && (dest-((card8*)work_buffer))<(res+1)) {
normal_warning("cff","invalid real value to pack. Continuing, but the font looks wrong.");
}
if (res<0)
......
#define luatex_svn_revision 7198
#define luatex_svn_revision 7207
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