diff options
| author | Toomas Soome <tsoome@me.com> | 2019-01-24 16:00:34 +0200 |
|---|---|---|
| committer | Toomas Soome <tsoome@me.com> | 2019-07-09 19:12:11 +0300 |
| commit | 6d7141bf502e486d75c0ad6b3c65862b4c48d097 (patch) | |
| tree | a32e473f5e4f44a2eb0881e2d5f42c4514d19722 /usr/src | |
| parent | d87e45489531bb9ab0203590a54ae7cdc51e84c7 (diff) | |
| download | illumos-joyent-6d7141bf502e486d75c0ad6b3c65862b4c48d097.tar.gz | |
11343 fwflash: NULL pointer errors
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Sebastian Wiedenroth <sebastian.wiedenroth@skylime.net>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src')
| -rw-r--r-- | usr/src/cmd/fwflash/plugins/transport/common/ses.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/fwflash/plugins/transport/common/ses.c b/usr/src/cmd/fwflash/plugins/transport/common/ses.c index f8aeb042a0..4c8a6c6b8a 100644 --- a/usr/src/cmd/fwflash/plugins/transport/common/ses.c +++ b/usr/src/cmd/fwflash/plugins/transport/common/ses.c @@ -118,7 +118,7 @@ static sam4_statdesc_t sam4_status[] = { { SAM4_STATUS_TASK_SET_FULL, "Status: TASK SET FULL (insufficient resources in command queue" }, { SAM4_STATUS_TASK_ABORTED, "Status: TASK ABORTED" }, - { NULL, NULL } + { 0, NULL } }; #define NSAM4_STATUS \ |
