[vlc-devel] commit: fixed compilation warning ( Felix Paul Kühne )

git version control git at videolan.org
Thu Feb 19 16:26:00 CET 2009


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Feb 19 16:25:55 2009 +0100| [392cc7bc82542afd615310b9553603e43dbf51a1] | committer: Felix Paul Kühne 

fixed compilation warning

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=392cc7bc82542afd615310b9553603e43dbf51a1
---

 modules/gui/macosx/fspanel.h |    2 +-
 modules/gui/macosx/fspanel.m |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/macosx/fspanel.h b/modules/gui/macosx/fspanel.h
index 1a38d89..2c5494a 100644
--- a/modules/gui/macosx/fspanel.h
+++ b/modules/gui/macosx/fspanel.h
@@ -37,7 +37,7 @@
     int i_device;
 }
 - (id)initWithContentRect: (NSRect)contentRect
-                styleMask: (unsigned int)aStyle
+                styleMask: (NSUInteger)aStyle
                   backing: (NSBackingStoreType)bufferingType
                     defer: (BOOL)flag;
 - (void)awakeFromNib;
diff --git a/modules/gui/macosx/fspanel.m b/modules/gui/macosx/fspanel.m
index f59d579..5b997be 100644
--- a/modules/gui/macosx/fspanel.m
+++ b/modules/gui/macosx/fspanel.m
@@ -41,7 +41,7 @@
 @implementation VLCFSPanel
 /* We override this initializer so we can set the NSBorderlessWindowMask styleMask, and set a few other important settings */
 - (id)initWithContentRect:(NSRect)contentRect 
-                styleMask:(NSInteger)aStyle 
+                styleMask:(NSUInteger)aStyle 
                   backing:(NSBackingStoreType)bufferingType 
                     defer:(BOOL)flag
 {




More information about the vlc-devel mailing list