aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.c
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-12-18 18:48:20 +0000
committerJoão Valverde <j@v6e.pt>2021-12-19 21:21:58 +0000
commit0ccd69e530ed18ac19a4484c76bdbef94d1ab2b1 (patch)
treeffb5f202b47fbead8ff87e573afd72c856c91ae0 /capture_opts.c
parentf984def50cfb20c5a47f7ac41b7b72bd270f2bb7 (diff)
Replace g_strdup_printf() with ws_strdup_printf()
Use macros from inttypes.h.
Diffstat (limited to 'capture_opts.c')
-rw-r--r--capture_opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture_opts.c b/capture_opts.c
index b04f3aa2b4..2c77a29ef8 100644
--- a/capture_opts.c
+++ b/capture_opts.c
@@ -544,7 +544,7 @@ capture_opts_generate_display_name(const char *friendly_name,
* On UN*X, however, users are more used to interface names,
* and may find it helpful to see them.
*/
- return g_strdup_printf("%s: %s", friendly_name, name);
+ return ws_strdup_printf("%s: %s", friendly_name, name);
}
#endif