diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2019-03-11 13:13:38 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2019-03-11 13:13:38 +0000 |
commit | cbabb52cbef55dc12ac62bb5e5da7cc02cf114d2 (patch) | |
tree | 9b95d76ec1eaca7a5112c582f7f176891a918e1c /usr/src/cmd/ul/ul.c | |
parent | e790b92538e616017d45a87be045bccb1a3c8758 (diff) | |
parent | 36ac8d7d925ed80286cf13327142ca1fa6943fc3 (diff) | |
download | illumos-joyent-cbabb52cbef55dc12ac62bb5e5da7cc02cf114d2.tar.gz |
[illumos-gate merge]
commit 36ac8d7d925ed80286cf13327142ca1fa6943fc3
10119 audit(1) gets NULL check wrong
commit dbef1f18aebff7758796283d40875419be721c2b
10510 loader: bios comc_probe() is out of sync with uefi version
commit 7b38fab6300e0a1599b9741cfeafd94d362b87aa
9433 Fix ARC hit rate
commit bc54f855e0de1e590115101c80f152a20722cfb0
10120 smatch indenting fixes for usr/src/cmd
Diffstat (limited to 'usr/src/cmd/ul/ul.c')
-rw-r--r-- | usr/src/cmd/ul/ul.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr/src/cmd/ul/ul.c b/usr/src/cmd/ul/ul.c index d4cfa6ea5f..272df43eb7 100644 --- a/usr/src/cmd/ul/ul.c +++ b/usr/src/cmd/ul/ul.c @@ -12,7 +12,9 @@ * specifies the terms and conditions for redistribution. */ -#pragma ident "%Z%%M% %I% %E% SMI" +/* + * Copyright (c) 2018, Joyent, Inc. + */ #include <stdio.h> #include <locale.h> @@ -460,7 +462,7 @@ iattr(void) tszbf += n * MEMFCT; } tszbf -= n; - *cp++ = cx; + *cp++ = cx; while (--n > 0) { *cp++ = cx; i++; |