cli: mention path separator for Windows in comment
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 12 Aug 2019 16:13:58 +0000 (12:13 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 12 Aug 2019 21:13:35 +0000 (17:13 -0400)
This function uses bt_common_append_plugin_path_dirs, which uses
G_SEARCHPATH_SEPARATOR to split up paths.  G_SEARCHPATH_SEPARATOR is ';'
on Windows.

Change-Id: If2a88d5cd138d0e1ab186e1e33fda9bb3ceaec5a
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/1882
Tested-by: jenkins <jenkins@lttng.org>
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
src/cli/babeltrace2-cfg.c

index 4ab27b0b6a2d0917cb6495f43b67f580dc824df2..21a5ea17b8b30e5332bc15bfef4892b15bf32c6e 100644 (file)
@@ -34,8 +34,8 @@ void destroy_gstring(void *data)
 }
 
 /*
- * Extracts the various paths from the string arg, delimited by ':',
- * and appends them to the array value object plugin_paths.
+ * Extracts the various paths from the string arg, delimited by ':' on UNIX,
+ * ';' on Windows, and appends them to the array value object `plugin_paths`.
  */
 int bt_config_append_plugin_paths(
                bt_value *plugin_paths, const char *arg)
This page took 0.026191 seconds and 4 git commands to generate.