gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r31684 - Extractor/src/plugins


From: gnunet
Subject: [GNUnet-SVN] r31684 - Extractor/src/plugins
Date: Sun, 22 Dec 2013 18:54:21 +0100

Author: grothoff
Date: 2013-12-22 18:54:21 +0100 (Sun, 22 Dec 2013)
New Revision: 31684

Modified:
   Extractor/src/plugins/jpeg_extractor.c
Log:
-just newlines

Modified: Extractor/src/plugins/jpeg_extractor.c
===================================================================
--- Extractor/src/plugins/jpeg_extractor.c      2013-12-22 17:53:52 UTC (rev 
31683)
+++ Extractor/src/plugins/jpeg_extractor.c      2013-12-22 17:54:21 UTC (rev 
31684)
@@ -79,11 +79,11 @@
 
 
 /**
- * Main entry method for the 'image/jpeg' extraction plugin.  
+ * Main entry method for the 'image/jpeg' extraction plugin.
  *
  * @param ec extraction context provided to the plugin
  */
-void 
+void
 EXTRACTOR_jpeg_extract_method (struct EXTRACTOR_ExtractContext *ec)
 {
   struct jpeg_decompress_struct jds;
@@ -103,7 +103,7 @@
   em.output_message = &no_output;
   em.error_exit = &no_exit;
   jds.client_data = &ctx;
-  if (1 == setjmp (ctx.env)) 
+  if (1 == setjmp (ctx.env))
     goto EXIT; /* we get here if libjpeg calls 'no_exit' because it wants to 
die */
   jds.err = &em;
   jpeg_create_decompress (&jds);
@@ -118,7 +118,7 @@
        break;
       jpeg_mem_src (&jds, buf, size);
       if (0 == is_jpeg)
-       {      
+       {
          if (JPEG_HEADER_OK == jpeg_read_header (&jds, 1))
            is_jpeg = 1; /* ok, really a jpeg, keep going until the end */
          continue;
@@ -171,7 +171,7 @@
                    mptr->data_length - off))
        goto EXIT;
     }
-  
+
  EXIT:
   jpeg_destroy_decompress (&jds);
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]