Revision: 4283
          http://skim-app.svn.sourceforge.net/skim-app/?rev=4283&view=rev
Author:   hofman
Date:     2008-07-23 15:32:24 +0000 (Wed, 23 Jul 2008)

Log Message:
-----------
Declare variables passed to library as int, as in the headers

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

Modified: trunk/SkimNotes/SKNExtendedAttributeManager.m
===================================================================
--- trunk/SkimNotes/SKNExtendedAttributeManager.m       2008-07-23 12:11:22 UTC 
(rev 4282)
+++ trunk/SkimNotes/SKNExtendedAttributeManager.m       2008-07-23 15:32:24 UTC 
(rev 4283)
@@ -547,8 +547,8 @@
 
 - (NSData *)bzipData:(NSData *)data;
 {
-       NSInteger compression = 5;
-    NSInteger bzret, buffer_size = 1000000;
+       int compression = 5;
+    int bzret, buffer_size = 1000000;
        bz_stream stream = { 0 };
        stream.next_in = (char *)[data bytes];
        stream.avail_in = [data length];
@@ -581,7 +581,7 @@
 
 - (NSData *)bunzipData:(NSData *)data;
 {
-       NSInteger bzret;
+       int bzret;
        bz_stream stream = { 0 };
        stream.next_in = (char *)[data bytes];
        stream.avail_in = [data length];


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

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Skim-app-commit mailing list
Skim-app-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to