summaryrefslogtreecommitdiff
path: root/src/plugins/exec/exec.h
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2020-05-03 16:07:11 +0200
committerSébastien Helleu <flashcode@flashtux.org>2020-05-03 16:07:11 +0200
commit5438f62f7489d6651973501b84b29200d7fd74d3 (patch)
treee5215b2f76b12b86e6b7d8b04fd69a69a6415c19 /src/plugins/exec/exec.h
parentdf26301d03b26f45fcb8acd361737da19b8e573c (diff)
downloadweechat-5438f62f7489d6651973501b84b29200d7fd74d3.zip
exec: fix use of same task id for different tasks (closes #1491)
Diffstat (limited to 'src/plugins/exec/exec.h')
-rw-r--r--src/plugins/exec/exec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/exec/exec.h b/src/plugins/exec/exec.h
index 82bf79280..26492f52f 100644
--- a/src/plugins/exec/exec.h
+++ b/src/plugins/exec/exec.h
@@ -43,7 +43,7 @@ enum t_exec_color
struct t_exec_cmd
{
/* command/process */
- int number; /* command number */
+ long number; /* command number */
char *name; /* name of command */
struct t_hook *hook; /* pointer to process hook */
char *command; /* command (with arguments) */