# HG changeset patch # User Jim Blandy # Date 737864128 0 # Node ID 718a69677759474a7f09a5dd0fa7b4b29c1f8b19 # Parent 725698689fbdc1712168ff63e76407898c8f35de Get the types right, baby. diff -r 725698689fbd -r 718a69677759 src/xfaces.c --- a/src/xfaces.c Thu May 20 02:14:56 1993 +0000 +++ b/src/xfaces.c Thu May 20 02:15:28 1993 +0000 @@ -558,8 +558,8 @@ same_size_fonts (font1, font2) XFontStruct *font1, *font2; { - XCharStruct *bounds1 = font1->min_bounds; - XCharStruct *bounds2 = font2->min_bounds; + XCharStruct *bounds1 = &font1->min_bounds; + XCharStruct *bounds2 = &font2->min_bounds; return (bounds1->width == bounds2->width && bounds1->ascent == bounds2->ascent