diff options
author | nicm <nicm> | 2017-01-16 14:49:14 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-16 14:49:14 +0000 |
commit | 68db9584777fd40f6100e7944992a021f6e40c71 (patch) | |
tree | 33c49d924f6846a337348bc5067c8f9d845a018e /format.c | |
parent | 52847a951802fda7a3ce36cdac77c34914b0ccca (diff) | |
download | rtmux-68db9584777fd40f6100e7944992a021f6e40c71.tar.gz rtmux-68db9584777fd40f6100e7944992a021f6e40c71.tar.bz2 rtmux-68db9584777fd40f6100e7944992a021f6e40c71.zip |
getopt() has a struct option so just return to using options_entry.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -622,7 +622,7 @@ format_find(struct format_tree *ft, const char *key, int modifiers) struct format_entry *fe, fe_find; struct environ_entry *envent; static char s[64]; - struct option *o; + struct options_entry *o; const char *found; int idx; char *copy, *saved; |