]> sjero.net Git - wget/commitdiff
Correct a mis-merge: return type for url_error is char*, not const char*
authorXavier Saint <wget@sxav.eu>
Thu, 7 Aug 2008 08:33:06 +0000 (10:33 +0200)
committerXavier Saint <wget@sxav.eu>
Thu, 7 Aug 2008 08:33:06 +0000 (10:33 +0200)
src/url.h

index 69db15510207488d7501fa8871ddb0d8389ebf63..0748e214acec8dc3419b291a77cf0c8b9c124866 100644 (file)
--- a/src/url.h
+++ b/src/url.h
@@ -85,7 +85,7 @@ struct url
 char *url_escape (const char *);
 
 struct url *url_parse (const char *, int *, struct iri *iri);
 char *url_escape (const char *);
 
 struct url *url_parse (const char *, int *, struct iri *iri);
-const char *url_error (const char *, int);
+char *url_error (const char *, int);
 char *url_full_path (const struct url *);
 void url_set_dir (struct url *, const char *);
 void url_set_file (struct url *, const char *);
 char *url_full_path (const struct url *);
 void url_set_dir (struct url *, const char *);
 void url_set_file (struct url *, const char *);