summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-05-22 10:24:17 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-05-22 10:24:17 +0000
commit6fa8d297bbdd3de9f9f5d0ca6af6f15831ae82e1 (patch)
treed43eecd8b1310eca1c42be1ccd1a1934e6978743 /lib.c
parent26a8b76899d20719f552820c0f30a5fde123de2d (diff)
cosmetics.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib.c b/lib.c
index 09566ae7..c9f307da 100644
--- a/lib.c
+++ b/lib.c
@@ -152,8 +152,7 @@ void mutt_str_replace (char **p, const char *s)
void mutt_str_adjust (char **p)
{
if (!p || !*p) return;
-
- safe_realloc (p, strlen (*p) + 1);
+ safe_realloc ((void **) p, strlen (*p) + 1);
}
/* convert all characters in the string to lowercase */