Fix compile warnings

This commit is contained in:
Seth Hillbrand
2022-10-04 17:06:45 -07:00
parent 03d847118a
commit a0865082fb
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -983,7 +983,7 @@ void PDF_PLOTTER::emitOutlineNode( OUTLINE_NODE* node, int parentHandle, int nex
if( node->children.size() > 0 )
{
fprintf( m_outputFile, " /Count %lld\n", -1*node->children.size() );
fprintf( m_outputFile, " /Count %zu\n", -1*node->children.size() );
fprintf( m_outputFile, " /First %d 0 R\n", node->children.front()->entryHandle );
fprintf( m_outputFile, " /Last %d 0 R\n", node->children.back()->entryHandle );
}