# HG changeset patch # User reimar # Date 1322950010 0 # Node ID d9dfe3689e14c7e603380932da43c60fb7d167c7 # Parent 6e7f60f6f9d40a9e828250a204ea007588f13802 Remove variable that is only assigned but never used. diff -r 6e7f60f6f9d4 -r d9dfe3689e14 libvo/vo_quartz.c --- a/libvo/vo_quartz.c Sat Dec 03 21:35:56 2011 +0000 +++ b/libvo/vo_quartz.c Sat Dec 03 22:06:50 2011 +0000 @@ -471,7 +471,6 @@ { CFStringRef titleKey; CFStringRef windowTitle; - OSStatus result; MenuItemIndex index; CFStringRef movMenuTitle; @@ -556,7 +555,7 @@ // Set window title titleKey = CFSTR("MPlayer - The Movie Player"); windowTitle = CFCopyLocalizedString(titleKey, NULL); - result = SetWindowTitleWithCFString(theWindow, windowTitle); + SetWindowTitleWithCFString(theWindow, windowTitle); CFRelease(titleKey); CFRelease(windowTitle);