summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Ruprecht <cmaiku@gmail.com>2017-06-02 15:53:05 -0500
committerMike Ruprecht <cmaiku@gmail.com>2017-06-02 15:53:05 -0500
commit8b14c8bf454095c6c25749e92669fc6db1e1e292 (patch)
tree876d7fdc5b83dae8a4bc88fa408f37987df1b816
parentef483e26e2f62a3eace8bd0e981ff62ca6a13fda (diff)
downloadpidgin-8b14c8bf454095c6c25749e92669fc6db1e1e292.tar.gz
util: Remove two unused variables from purple_markup_unescape_entity()
-rw-r--r--libpurple/util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpurple/util.c b/libpurple/util.c
index 5015acc76a..b068ed9e6a 100644
--- a/libpurple/util.c
+++ b/libpurple/util.c
@@ -950,8 +950,7 @@ const char *
purple_markup_unescape_entity(const char *text, int *length)
{
const char *pln;
- int len, pound;
- char temp[2];
+ int len;
if (!text || *text != '&')
return NULL;