commit 15d3cc42d0780fb0178c2d0073d38e500890a836
parent 7a3b043383533db5515daf21a9eae2ee24613030
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 2 Aug 2012 19:51:29 +0000
-fix
Diffstat:
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/doc/version.texi b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 12 May 2012
-@set UPDATED-MONTH May 2012
+@set UPDATED 29 January 2012
+@set UPDATED-MONTH January 2012
@set EDITION 0.6.3
@set VERSION 0.6.3
diff --git a/src/main/extractor_ipc.c b/src/main/extractor_ipc.c
@@ -108,7 +108,7 @@ EXTRACTOR_IPC_process_reply_ (struct EXTRACTOR_PluginList *plugin,
if (meta.meta_type >= EXTRACTOR_metatype_get_max ())
meta.meta_type = EXTRACTOR_METATYPE_UNKNOWN;
proc (proc_cls,
- plugin,
+ plugin,
(enum EXTRACTOR_MetaType) meta.meta_type,
(enum EXTRACTOR_MetaFormat) meta.meta_format,
mime_type, value, meta.value_size);
diff --git a/src/main/extractor_ipc.h b/src/main/extractor_ipc.h
@@ -424,17 +424,17 @@ EXTRACTOR_IPC_channel_send_ (struct EXTRACTOR_Channel *channel,
* @param plugin plugin of the channel sending the message
* @param meta_type type of the meta data
* @param meta_format format of the meta data
- * @param value_len number of bytes in 'value'
- * @param value 'data' send from the plugin
* @param mime mime string send from the plugin
+ * @param value 'data' send from the plugin
+ * @param value_len number of bytes in 'value'
*/
typedef void (*EXTRACTOR_ChannelMessageProcessor) (void *cls,
struct EXTRACTOR_PluginList *plugin,
enum EXTRACTOR_MetaType meta_type,
enum EXTRACTOR_MetaFormat meta_format,
- size_t value_len,
+ const char *mime,
const void *value,
- const char *mime);
+ size_t value_len);
/**