diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-12-02 11:26:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-02 11:26:11 -0500 |
| commit | 8abe686a3e15ac688d8f73b84cf685a6d47bcbeb (patch) | |
| tree | fa7ec2b2b12d0befc53041d39509f3dda8f78292 /lib/command_graph.h | |
| parent | bb2d775cca77ef34738653fbc9f133f178642881 (diff) | |
| parent | 2b64873d24730882af68bdf2881aa380a3a8d17f (diff) | |
Merge pull request #5389 from opensourcerouting/constify
*: constify ALL the things
Diffstat (limited to 'lib/command_graph.h')
| -rw-r--r-- | lib/command_graph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command_graph.h b/lib/command_graph.h index 903d515834..1efe8b1803 100644 --- a/lib/command_graph.h +++ b/lib/command_graph.h @@ -116,7 +116,7 @@ extern struct cmd_token *cmd_token_dup(struct cmd_token *); extern void cmd_token_del(struct cmd_token *); extern void cmd_token_varname_set(struct cmd_token *token, const char *varname); -extern void cmd_graph_parse(struct graph *graph, struct cmd_element *cmd); +extern void cmd_graph_parse(struct graph *graph, const struct cmd_element *cmd); extern void cmd_graph_names(struct graph *graph); extern void cmd_graph_merge(struct graph *old, struct graph *n, int direction); |
