diff options
author | midipix <writeonce@midipix.org> | 2016-05-05 08:57:38 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-05 08:57:38 -0400 |
commit | 36a4c5f608ab93fed5f3c48ef175e8eeb49e7b18 (patch) | |
tree | 768f626b84d1deab02d6c657e5633f8f7bcd2803 | |
parent | 5e3f486df13af96d3e72762bce8557eb9845d740 (diff) | |
download | slibtool-36a4c5f608ab93fed5f3c48ef175e8eeb49e7b18.tar.bz2 slibtool-36a4c5f608ab93fed5f3c48ef175e8eeb49e7b18.tar.xz |
library: struct slbt_common_ctx: changed the order of elements.
-rw-r--r-- | include/slibtool/slibtool.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h index 233d80d..e4b21c0 100644 --- a/include/slibtool/slibtool.h +++ b/include/slibtool/slibtool.h @@ -190,17 +190,17 @@ struct slbt_common_ctx { enum slbt_mode mode; enum slbt_tag tag; enum slbt_warning_level warnings; + char ** cargv; + char ** targv; + char * libname; const char * target; const char * output; const char * shrext; - char * libname; const char * rpath; const char * release; const char * symfile; const char * regex; const char * user; - char ** targv; - char ** cargv; }; struct slbt_driver_ctx { |