Revision: 25406
          http://sourceforge.net/p/bibdesk/svn/25406
Author:   hofman
Date:     2021-01-15 23:38:03 +0000 (Fri, 15 Jan 2021)
Log Message:
-----------
type cast returned pointer

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPDFIcon.m

Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPDFIcon.m
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPDFIcon.m       2021-01-15 
22:19:08 UTC (rev 25405)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPDFIcon.m       2021-01-15 
23:38:03 UTC (rev 25406)
@@ -344,7 +344,7 @@
             _thumbnailSize = FVCGImageSize(_thumbnail);
             // retain since there's a possible race here if another thread 
inserts a description (although multiple instances shouldn't be rendering for 
the same cache key)
             pthread_mutex_lock(&_descriptionLock);
-            _FVDocumentDescription *desc = NSMapGet(_documentDescriptions, 
_cacheKey);
+            _FVDocumentDescription *desc = (_FVDocumentDescription 
*)NSMapGet(_documentDescriptions, _cacheKey);
             pthread_mutex_unlock(&_descriptionLock);
             if (desc) {
                 _pageCount = desc->_pageCount ?: 1;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to