[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Author: Nenghe Wang <address@hidden>
From: |
Paul Smith |
Subject: |
Re: [PATCH] Author: Nenghe Wang <address@hidden> |
Date: |
Sun, 20 Mar 2022 09:32:54 -0400 |
User-agent: |
Evolution 3.42.4 (by Flathub.org)) |
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, boxuesong@126.com wrote:
> From: wnh <545934173@qq.com>
>
> 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>