# HG changeset patch # User Matti Hamalainen # Date 1701248820 -7200 # Node ID ad18774054e32a6cfff323106428299d428facf4 # Parent 2aa885371c13166c831086c5a83f4b7d319f80fc Constify. diff -r 2aa885371c13 -r ad18774054e3 tools/fontconv.c --- a/tools/fontconv.c Wed Nov 29 10:53:01 2023 +0200 +++ b/tools/fontconv.c Wed Nov 29 11:07:00 2023 +0200 @@ -226,7 +226,7 @@ } -int dmSaveBitmapFont(DMResource *fp, DMBitmapFont *font) +int dmSaveBitmapFont(DMResource *fp, const DMBitmapFont *font) { if (font == NULL) return DMERR_NULLPTR;