Thank you for the patch. It's most helpful if you can provide an example of the warning you're trying to address, when you send the patch.
Cheers! On Sat, 2022-03-19 at 19:42 +0800, [email protected] wrote: > From: wnh <[email protected]> > > Adjust header file order in src/remote-cstms.c > > Put #include "job.h" in front of #include "commands.h" to > avoid compile warning > --- > src/remote-cstms.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/remote-cstms.c b/src/remote-cstms.c > index e336928..1c82ded 100644 > --- a/src/remote-cstms.c > +++ b/src/remote-cstms.c > @@ -20,8 +20,8 @@ this program. If not, see > <http://www.gnu.org/licenses/>. */ > > #include "makeint.h" > #include "filedef.h" > -#include "commands.h" > #include "job.h" > +#include "commands.h" > #include "debug.h" > > #include <sys/time.h>
