Revision: 9761
          http://sourceforge.net/p/skim-app/code/9761
Author:   hofman
Date:     2018-04-12 17:26:48 +0000 (Thu, 12 Apr 2018)
Log Message:
-----------
code layout

Modified Paths:
--------------
    trunk/SkimNotes/SKNExtendedAttributeManager.m

Modified: trunk/SkimNotes/SKNExtendedAttributeManager.m
===================================================================
--- trunk/SkimNotes/SKNExtendedAttributeManager.m       2018-04-12 17:23:19 UTC 
(rev 9760)
+++ trunk/SkimNotes/SKNExtendedAttributeManager.m       2018-04-12 17:26:48 UTC 
(rev 9761)
@@ -587,7 +587,7 @@
         if (bzret < BZ_OK) {
             hadError = YES;
             compressed = nil;
-        } else {        
+        } else {
             [compressed appendBytes:[buffer bytes] length:(BZIP_BUFFER_SIZE - 
stream.avail_out)];
             stream.next_out = [buffer mutableBytes];
             stream.avail_out = BZIP_BUFFER_SIZE;
@@ -622,7 +622,7 @@
         if (bzret < BZ_OK || (BZIP_BUFFER_SIZE == stream.avail_out && 
++hangCount > maxHangCount)) {
             hadError = YES;
             decompressed = nil;
-        } else {        
+        } else {
             [decompressed appendBytes:[buffer bytes] length:(BZIP_BUFFER_SIZE 
- stream.avail_out)];
             stream.next_out = [buffer mutableBytes];
             stream.avail_out = BZIP_BUFFER_SIZE;

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


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Skim-app-commit mailing list
Skim-app-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to