commit e81123a4cf1ed5f4225940a5e69bfaeb8869b8eb
parent 2dc786159020a3f6d1902e08f92775d02e815bb5
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 30 Jun 2026 18:59:34 +0200
render dimensions consistently as width x height
Diffstat:
5 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/src/main/extractor_datasource.c b/src/main/extractor_datasource.c
@@ -1414,7 +1414,7 @@ EXTRACTOR_datasource_seek_ (void *cls,
*
* @param cls must be a 'struct EXTRACTOR_Datasource'
* @param force force computing the size if it is unavailable
- * @return overall file size, UINT64_MAX on error or unknown
+ * @return overall file size, -1 on error or unknown
*/
int64_t
EXTRACTOR_datasource_get_size_ (void *cls,
diff --git a/src/plugins/gif_extractor.c b/src/plugins/gif_extractor.c
@@ -97,8 +97,8 @@ EXTRACTOR_gif_extract_method (struct EXTRACTOR_ExtractContext *ec)
snprintf (dims,
sizeof (dims),
"%dx%d",
- gif_file->SHeight,
- gif_file->SWidth);
+ gif_file->SWidth,
+ gif_file->SHeight);
if (0 !=
ec->proc (ec->cls,
"gif",
diff --git a/src/plugins/html_extractor.c b/src/plugins/html_extractor.c
@@ -231,7 +231,6 @@ EXTRACTOR_html_extract_method (struct EXTRACTOR_ExtractContext *ec)
}
if (NULL == (head = tidyGetHead (doc)))
{
- fprintf (stderr, "no head\n");
tidyRelease (doc);
return;
}
diff --git a/src/plugins/it_extractor.c b/src/plugins/it_extractor.c
@@ -19,7 +19,7 @@
*
*/
/**
- * @file plugins/xm_extractor.c
+ * @file plugins/it_extractor.c
* @brief plugin to support Impulse Tracker (IT) files
* @author Toni Ruottu
* @author Christian Grothoff
diff --git a/src/plugins/sid_extractor.c b/src/plugins/sid_extractor.c
@@ -20,7 +20,7 @@
*/
/**
* @file plugins/sid_extractor.c
- * @brief plugin to support Scream Tracker (S3M) files
+ * @brief plugin to support SID files
* @author Toni Ruottu
* @author Christian Grothoff
*/