summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-09-26 04:23:02 +0000
committercorvid <corvid@lavabit.com>2009-09-26 04:23:02 +0000
commit4fcd346b7ca220101be908467bb5fa3108ac94f8 (patch)
tree6df52936536a7fd1df92ab6d44621da26b8063f3 /src
parente12b439404e7adeeb8fb3aa4577b0f7dc08bb192 (diff)
MSG_WARN for unknown charset decoding
Diffstat (limited to 'src')
-rw-r--r--src/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c
index 5a1b7bb8..3a9da9b9 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -284,7 +284,7 @@ Decode *a_Decode_charset_init(const char *format)
dc->decode = Decode_charset;
dc->free = Decode_charset_free;
} else {
- MSG("Unable to convert from character encoding: '%s'\n", format);
+ MSG_WARN("Unable to convert from character encoding: '%s'\n", format);
}
}
return dc;