Revision: 12095
http://sourceforge.net/p/skim-app/code/12095
Author: hofman
Date: 2020-12-28 22:58:16 +0000 (Mon, 28 Dec 2020)
Log Message:
-----------
Avoid cast warning
Modified Paths:
--------------
trunk/vendorsrc/andymatuschak/Sparkle/Sparkle/SUHost.m
Modified: trunk/vendorsrc/andymatuschak/Sparkle/Sparkle/SUHost.m
===================================================================
--- trunk/vendorsrc/andymatuschak/Sparkle/Sparkle/SUHost.m 2020-12-28
22:55:33 UTC (rev 12094)
+++ trunk/vendorsrc/andymatuschak/Sparkle/Sparkle/SUHost.m 2020-12-28
22:58:16 UTC (rev 12095)
@@ -219,7 +219,7 @@
}
else
{
- value = (BOOL)CFBooleanGetValue((CFBooleanRef)plr);
+ value = CFBooleanGetValue((CFBooleanRef)plr) ? YES : NO;
CFRelease(plr);
}
return value;
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit