diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-09-24 01:44:13 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-10-01 17:04:39 +0200 |
commit | bbabaabc200a63e3a2816378b2162536b9af43a5 (patch) | |
tree | c8e7bac4ef5c57bcafacc47bb04059a45b65d70d | |
parent | d7230fee0df687267fb6c29b5bb8b577de21ce4c (diff) | |
download | fiv-bbabaabc200a63e3a2816378b2162536b9af43a5.tar.gz fiv-bbabaabc200a63e3a2816378b2162536b9af43a5.tar.xz fiv-bbabaabc200a63e3a2816378b2162536b9af43a5.zip |
Improve comment wording
-rw-r--r-- | fastiv-io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fastiv-io.c b/fastiv-io.c index 25b99b2..d4d3e9a 100644 --- a/fastiv-io.c +++ b/fastiv-io.c @@ -390,7 +390,8 @@ fastiv_io_open(const gchar *path, GError **error) cairo_surface_t *surface = NULL; switch (wuffs_base__magic_number_guess_fourcc(prefix)) { case WUFFS_BASE__FOURCC__BMP: - // Note that BMP can redirect into another format, which is unsupported. + // Note that BMP can redirect into another format, + // which is so far unsupported here. surface = open_wuffs_using( wuffs_bmp__decoder__alloc_as__wuffs_base__image_decoder, data, len, error); |