diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-04-15 23:54:00 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-04-15 23:54:00 +0200 |
commit | 1628c97d1ee667908372a41be8e33720047723b5 (patch) | |
tree | c7bebc99b492f6692887832e847752de29294c8c /sys/src/cmd/webfs/fns.h | |
parent | 9e08127ba6a4754fae8afcc6bca9d8b299180632 (diff) |
webfs: change %H (hostname) format to %N to not collide with encodefmt's %H (hex)
Diffstat (limited to 'sys/src/cmd/webfs/fns.h')
-rw-r--r-- | sys/src/cmd/webfs/fns.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/cmd/webfs/fns.h b/sys/src/cmd/webfs/fns.h index 3fa5596a7..6c17127d0 100644 --- a/sys/src/cmd/webfs/fns.h +++ b/sys/src/cmd/webfs/fns.h @@ -14,9 +14,10 @@ char* unquote(char *s, char **ps); /* url */ #pragma varargck type "U" Url* #pragma varargck type "E" Str2 +#pragma varargck type "N" char* int Efmt(Fmt*); -int Hfmt(Fmt*); +int Nfmt(Fmt*); int Ufmt(Fmt*); char* Upath(Url *); Url* url(char *s, Url *b); |