diff options
| author | Felipe Pena <felipe@php.net> | 2009-03-27 19:50:56 +0000 |
|---|---|---|
| committer | Felipe Pena <felipe@php.net> | 2009-03-27 19:50:56 +0000 |
| commit | 7c860bb018c3d02c3f30c424d8f05fa633fd5185 (patch) | |
| tree | 65f1ad7a34e65b3abedec82a9e46850e82cddf8b /main/snprintf.c | |
| parent | 04c90a0f510b0524ea1b4151841d41208520a48e (diff) | |
| download | php-git-7c860bb018c3d02c3f30c424d8f05fa633fd5185.tar.gz | |
- Removed leftover UG(unicode) checks
Diffstat (limited to 'main/snprintf.c')
| -rw-r--r-- | main/snprintf.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/main/snprintf.c b/main/snprintf.c index cc19754318..b64abac3d2 100644 --- a/main/snprintf.c +++ b/main/snprintf.c @@ -957,11 +957,7 @@ static int format_converter(register buffy * odp, const char *fmt, va_list ap) / break; case 'v': - if (UG(unicode)) { - goto fmt_unicode; - } else { - goto fmt_string; - } + goto fmt_unicode; break; case 'R': |
