]> git.droids-corp.org - dpdk.git/blobdiff - app/test/process.h
eal: deprecate rte_snprintf
[dpdk.git] / app / test / process.h
index ee9fda61473b38cba4080b37237d6a1519c051ce..cb8973efb4e13e943d7630cdd58e1b2c747fb1ee 100644 (file)
@@ -81,7 +81,7 @@ process_dup(const char *const argv[], int numargs, const char *env_value)
                /* close all open file descriptors, check /proc/self/fd to only
                 * call close on open fds. Exclude fds 0, 1 and 2*/
                for (fd = getdtablesize(); fd > 2; fd-- ) {
-                       rte_snprintf(path, sizeof(path), "/proc/" exe "/fd/%d", fd);
+                       snprintf(path, sizeof(path), "/proc/" exe "/fd/%d", fd);
                        if (access(path, F_OK) == 0)
                                close(fd);
                }