Fix wrong lttng_channel name size
authorDavid Goulet <david.goulet@polymtl.ca>
Wed, 7 Dec 2011 21:19:54 +0000 (16:19 -0500)
committerDavid Goulet <david.goulet@polymtl.ca>
Wed, 7 Dec 2011 21:19:54 +0000 (16:19 -0500)
Signed-off-by: David Goulet <david.goulet@polymtl.ca>
include/lttng/lttng.h

index ebcdd2b58e94ca83484b3b7fad4972f9d3e91b74..f1c913b66b639f5244bb0282e1b734282df85656 100644 (file)
@@ -172,7 +172,7 @@ struct lttng_channel_attr {
  * Channel information structure. For both kernel and user-space.
  */
 struct lttng_channel {
-       char name[NAME_MAX];
+       char name[LTTNG_SYMBOL_NAME_LEN];
        uint32_t enabled;
        struct lttng_channel_attr attr;
 };
This page took 0.02531 seconds and 4 git commands to generate.