X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Ffont-ximage.c;fp=hacks%2Fglx%2Ffont-ximage.c;h=22ef3a814e7388a972d54d8a09e9953fb0af4f9d;hp=bb51736787de110104f6f8921cf3c0cd0f0e42d6;hb=8afc01a67be4fbf3f1cc0fce9adf01b5289a21c6;hpb=3f1091236d800c43a3124c44c7da54e53f205b13 diff --git a/hacks/glx/font-ximage.c b/hacks/glx/font-ximage.c index bb517367..22ef3a81 100644 --- a/hacks/glx/font-ximage.c +++ b/hacks/glx/font-ximage.c @@ -128,7 +128,7 @@ text_to_ximage (Screen *screen, Visual *visual, XCharStruct o2; int ascent, descent, direction; token = 0; - XTextExtents (f, line, strlen(line), + XTextExtents (f, line, (int) strlen(line), &direction, &ascent, &descent, &o2); overall.lbearing = MAX(overall.lbearing, o2.lbearing); overall.rbearing = MAX(overall.rbearing, o2.rbearing); @@ -166,7 +166,7 @@ text_to_ximage (Screen *screen, Visual *visual, int ascent, descent, direction; token = 0; - XTextExtents(f, line, strlen(line), + XTextExtents(f, line, (int)strlen(line), &direction, &ascent, &descent, &o2); XDrawString(dpy, bitmap, gc, overall.lbearing + margin + xoff, @@ -174,7 +174,7 @@ text_to_ximage (Screen *screen, Visual *visual, (f->descent * lines) + margin + yoff), - line, strlen(line)); + line, (int) strlen(line)); lines++; } free(text2);