From 416c0d99d3c6657ed927ca0ed877214261fa4b32 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Wed, 10 Jun 2015 10:53:25 +0000 Subject: Mac OS: remove 5 compilation warnings of this kind: warning: comparison of function 'CGDataConsumerCreateWithCFData' not equal to a null pointer is always true note: prefix with the address-of operator to silence this warning git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10747 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Quartz_Printer.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Fl_Quartz_Printer.mm') diff --git a/src/Fl_Quartz_Printer.mm b/src/Fl_Quartz_Printer.mm index fba79c5e5..a323d5844 100644 --- a/src/Fl_Quartz_Printer.mm +++ b/src/Fl_Quartz_Printer.mm @@ -240,7 +240,7 @@ int Fl_System_Printer::start_page (void) { OSStatus status = PMSessionBeginPageNoDialog(printSession, pageFormat, NULL); #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4 - if ( PMSessionGetCGGraphicsContext != NULL ) { + if ( &PMSessionGetCGGraphicsContext != NULL ) { status = PMSessionGetCGGraphicsContext(printSession, &fl_gc); } else -- cgit v1.2.3