diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-02-12 12:11:34 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-02-12 12:11:34 +0100 |
commit | ead23b8777540223a69d5df898709bd1cea57e00 (patch) | |
tree | 2e4683dbd4290b301518a4c965ad88542439e1f4 /term | |
parent | 943cf7a540dc9330d81236c557d719ca6f1bb186 (diff) | |
download | hurd-ead23b8777540223a69d5df898709bd1cea57e00.tar.gz hurd-ead23b8777540223a69d5df898709bd1cea57e00.tar.bz2 hurd-ead23b8777540223a69d5df898709bd1cea57e00.zip |
Fix warning
* term/devio.c (ports_do_mach_notify_send_once): Use io_buf_ptr_inband_t
type instead of automatically-sized array.
Diffstat (limited to 'term')
-rw-r--r-- | term/devio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/term/devio.c b/term/devio.c index 60ee2217..621ec937 100644 --- a/term/devio.c +++ b/term/devio.c @@ -747,7 +747,7 @@ ports_do_mach_notify_send_once (struct port_info *pi) if (input_pending) { /* xxx */ - char msg[] = "Term input check happened\r\n"; + io_buf_ptr_inband_t msg = "Term input check happened\r\n"; int foo; device_write_inband (phys_device, 0, 0, msg, sizeof msg, &foo); /* end xxx */ |