summaryrefslogtreecommitdiff
path: root/vasprintf.c
diff options
context:
space:
mode:
authorthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-01-16 10:44:18 +0000
committerthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-01-16 10:44:18 +0000
commitb49520bf515a9b12693bfd4f6fb8abe181a00b25 (patch)
tree8749dbdc5bf186b40bc0a4c11bd6f810c545244c /vasprintf.c
parent6de5ff5bff600f1d5b43041b742a1914476a183b (diff)
downloadmpfr-b49520bf515a9b12693bfd4f6fb8abe181a00b25.tar.gz
cosmetic changes: only one leading underscore for an identifier with file scope
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5195 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'vasprintf.c')
-rw-r--r--vasprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vasprintf.c b/vasprintf.c
index 3a0163a9f..7eaf2666f 100644
--- a/vasprintf.c
+++ b/vasprintf.c
@@ -107,9 +107,9 @@ static const char num_to_text[16] = "0123456789abcdef";
} \
} while (0)
-/* __arg_type contains all the types described by the 'type' field of the
+/* _arg_type contains all the types described by the 'type' field of the
format string */
-enum __arg_type
+enum _arg_type
{
NONE,
CHAR_ARG,
@@ -145,7 +145,7 @@ struct printf_spec
int width; /* Width */
int prec; /* Precision */
- enum __arg_type arg_type; /* Type of argument */
+ enum _arg_type arg_type; /* Type of argument */
mp_rnd_t rnd_mode; /* Rounding mode */
char spec; /* Conversion specifier */
@@ -2657,7 +2657,7 @@ mpfr_vasprintf (char **ptr, const char *fmt, va_list ap)
break;
else if (spec.spec == 'n')
{
- int *int_ptr; /* [FIXME] do mp{zqf} cases */
+ int *int_ptr; /* [TODO] do mp{zqf} cases */
int_ptr = va_arg (ap, int *);
FLUSH (gmp_fmt_flag, start, end, ap2, &buf);
va_end (ap2);