diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2019-02-26 12:43:20 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2019-02-26 12:43:20 +0000 |
commit | e5af3bd1c99c58d9dd19baec10e1b5e8f064858d (patch) | |
tree | e4674045e090ab283ea4b0877c9b58f9ac7bee64 /usr/src/uts/common/io/conskbd.c | |
parent | 1b1bcfc89ac08be2fc9fd5df44b98ec44e4d909b (diff) | |
parent | 52abb70e073c2a88808c0d66fd810ba8c5080572 (diff) | |
download | illumos-joyent-e5af3bd1c99c58d9dd19baec10e1b5e8f064858d.tar.gz |
[illumos-gate merge]
commit 52abb70e073c2a88808c0d66fd810ba8c5080572
9691 fat zap should prefetch when iterating
commit 8648b7db4afb6cc9a8e5b55e38e99c8c64b74e86
10435 dld: NULL pointer errors
commit c4b91d4b4753f33280a63b16f5116d23427088b1
10444 linenoise: this statement may fall through
commit 584814c74382743e01cc62cc8764cfde61718c46
10443 loader: move panic.c to libstand
commit c11cea93a9321bd25667986dc65a86b56de2ac04
10441 hxge: NULL pointer errors
commit 1f14a912903a53cb5b4ed3f75e9e4d2be8ded1ba
10440 ipd: NULL pointer errors
commit 2520aea3664a4259338aefa2aa4a4945654615c6
10439 ecpp: NULL pointer errors
commit 55aeed12a7fb74469f7ea0fbb3d2329d4c8c96ae
10438 fd: NULL pointer errors
commit 5c63ad82aeee3300425b5803b5324fd102047957
10437 dca: NULL pointer errors
commit 8d3c0bf06dddf77026f7ea064cfccfae818b5b0f
10434 dump: NULL pointer errors
commit a3f59f6e87a609ee4950ebfcf34be0cca305e58b
10433 bpf: NULL pointer errors
commit 093aa5c8de00cc7b99cc4a2cfaeb7d95115847b7
10432 devinfo: NULL pointer errors
commit a897f299fb4fe4ed74ba062d6b8984404d1b94bc
10431 conskbd: NULL pointer errors
commit b63d0986fbd0638ed6abf1248f1a297c5d9a4f91
10151 mv_xattrs() checks for a NULL array name
commit 5085a9e0a8c766d5e9b74954833264533f617614
10369 sysent: cast between incompatible function types
commit ebc6491a5a66ba44ff1a3fa2a627e67d665604f0
10163 ufs_fsck: bitwise comparison always evaluates to false
Diffstat (limited to 'usr/src/uts/common/io/conskbd.c')
-rw-r--r-- | usr/src/uts/common/io/conskbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/io/conskbd.c b/usr/src/uts/common/io/conskbd.c index c250a6be8c..feaf659d33 100644 --- a/usr/src/uts/common/io/conskbd.c +++ b/usr/src/uts/common/io/conskbd.c @@ -455,7 +455,7 @@ conskbd_attach(dev_info_t *devi, ddi_attach_cmd_t cmd) } if ((ddi_create_minor_node(devi, "kbd", S_IFCHR, - 0, DDI_PSEUDO, NULL) == DDI_FAILURE) || + 0, DDI_PSEUDO, 0) == DDI_FAILURE) || (ddi_create_internal_pathname(devi, "conskbd", S_IFCHR, 1) == DDI_FAILURE)) { ddi_remove_minor_node(devi, NULL); @@ -1686,7 +1686,7 @@ conskbd_alloc_firm_event(ushort_t id, int value) fe = (Firm_event *)mb->b_wptr; fe->id = id; fe->pair_type = FE_PAIR_NONE; - fe->pair = NULL; + fe->pair = '\0'; fe->value = value; mb->b_wptr += sizeof (Firm_event); } |