diff options
author | jcid <devnull@localhost> | 2008-10-30 18:23:03 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-10-30 18:23:03 +0100 |
commit | 3309d5e5590c510f8518cb2cce4cd555df2211e5 (patch) | |
tree | d99f6109ee7cb6049b55a1dc7cd82eab53d4c668 /src/url.h | |
parent | e1cb964a74ed9477716ea200aefb530771512ec0 (diff) |
- Reduced warnings with gcc-4.3.
Diffstat (limited to 'src/url.h')
-rw-r--r-- | src/url.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -95,12 +95,12 @@ extern "C" { struct _DilloUrl { Dstr *url_string; const char *buffer; - const char *scheme; // - const char *authority; // - const char *path; // These are references only - const char *query; // (no need to free them) - const char *fragment; // - const char *hostname; // + const char *scheme; /**/ + const char *authority; /**/ + const char *path; /* These are references only */ + const char *query; /* (no need to free them) */ + const char *fragment; /**/ + const char *hostname; /**/ int port; int flags; Dstr *data; /* POST */ |