fix warning - tscrape - twitter scraper
HTML git clone git://git.codemadness.org/tscrape
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 10468e9a2e46241c75a71b73a3ec859c80776c19
DIR parent 7beb8f73e99bc0208495a3a009ec2309ae3b2903
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sat, 23 Apr 2016 13:20:12 +0200
fix warning
Diffstat:
M tscrape.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/tscrape.c b/tscrape.c
@@ -48,7 +48,7 @@ static void
printescape(const char *s)
{
size_t i;
- char *e;
+ const char *e;
/* strip leading and trailing white-space */
for (; *s && isspace(*s); s++)