Skip to content
Snippets Groups Projects
Commit f23c57d2 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed signedness warning.

Rev: src/modules/Image/font.c:1.18
parent a0f90907
No related branches found
No related tags found
No related merge requests found
/* $Id: font.c,v 1.17 1997/09/05 22:18:00 per Exp $ */
/* $Id: font.c,v 1.18 1997/09/10 13:26:13 grubba Exp $ */
#include <config.h>
#define SPACE_CHAR 'i'
......@@ -6,7 +6,7 @@
/*
**! module Image
**! note
**! $Id: font.c,v 1.17 1997/09/05 22:18:00 per Exp $<br>
**! $Id: font.c,v 1.18 1997/09/10 13:26:13 grubba Exp $<br>
**! class font
**!
**! note
......@@ -498,7 +498,7 @@ void font_write(INT32 args)
for (j=0; j<args; j++)
{
to_write = sp[j-args].u.string->str;
to_write = (unsigned char *)sp[j-args].u.string->str;
to_write_len = sp[j-args].u.string->len;
switch(this->justification)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment