On 2005-10-28 13:11, [EMAIL PROTECTED] said:

>     OSStatus              status = FMCreateFontFamilyIterator( NULL, NULL,
>                                                                options,
>                                                                &famIter );
>-    FMFont                the_font = NULL;
>-    FMFontFamily          family   = NULL;
>+    FMFont                the_font = ( FMFont ) NULL;
>+    FMFontFamily          family   = ( FMFontFamily ) NULL;

gcc 4 on Mac OS X gives a warning about this too.  As you said, FMFont
is not a pointer but an integer.  Using 0 I think is the best solution.

--
____________________________________________________________
Sean McBride, B. Eng                 [EMAIL PROTECTED]
Rogue Research                        www.rogue-research.com
Mac Software Developer              Montréal, Québec, Canada




_______________________________________________
Freetype-devel mailing list
Freetype-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/freetype-devel

Reply via email to