From 599cfc128ac01409e55262f68d8be57ee76dcdd5 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 21 May 2005 07:36:26 +0000 Subject: [PATCH] Fix warning. --- stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp b/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp index 8a34789a78..5ed8f1cd43 100644 --- a/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp +++ b/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp @@ -8,7 +8,7 @@ static SInt16 ShowAlert( int type, CFStringRef message, CFStringRef OK, CFStringRef cancel = NULL ) { struct AlertStdCFStringAlertParamRec params = {kStdCFStringAlertVersionOne, true, false, OK, cancel, NULL, - kAlertStdAlertOKButton, kAlertStdAlertCancelButton, kWindowAlertPositionParentWindowScreen, NULL}; + kAlertStdAlertOKButton, kAlertStdAlertCancelButton, kWindowAlertPositionParentWindowScreen, 0}; DialogRef dialog; SInt16 result; OSErr err;