Clarify lib_ring_buffer_switch_slow() requirements
[lttng-ust.git] / snprintf / snprintf.c
index b0ea5d3b0373cd46e282335d303beb136e1f21f4..a6263979fb0f3392ef0371693a85369169e25353 100644 (file)
 #include "local.h"
 #include "ust_snprintf.h"
 
+#define DUMMY_LEN      1
+
 int ust_safe_vsnprintf(char *str, size_t n, const char *fmt, va_list ap)
 {
        int ret;
-       char dummy;
-       LFILE f;
-       struct __sfileext fext;
+       char dummy[DUMMY_LEN];
+       LTTNG_UST_LFILE f;
+       struct __lttng_ust_sfileext fext;
 
        /* While snprintf(3) specifies size_t stdio uses an int internally */
        if (n > INT_MAX)
                n = INT_MAX;
        /* Stdio internals do not deal correctly with zero length buffer */
        if (n == 0) {
-               str = &dummy;
-               n = 1;
+               str = dummy;
+               n = DUMMY_LEN;
        }
        _FILEEXT_SETUP(&f, &fext);
        f._file = -1;
This page took 0.024075 seconds and 4 git commands to generate.