eal: deprecate rte_snprintf
[dpdk.git] / lib / librte_mempool / rte_dom0_mempool.c
index 8152b01..9ec68fb 100644 (file)
@@ -111,7 +111,7 @@ rte_dom0_mempool_create(const char *name, unsigned elt_num, unsigned elt_size,
        if (pa == NULL)
                return mp;
 
-       rte_snprintf(mz_name, sizeof(mz_name), RTE_MEMPOOL_OBJ_NAME, name);
+       snprintf(mz_name, sizeof(mz_name), RTE_MEMPOOL_OBJ_NAME, name);
        mz = rte_memzone_reserve(mz_name, sz, socket_id, mz_flags);
        if (mz == NULL) {
                free(pa);