diff options
author | Tony Nguyen <Ton.Nguyen@Sun.COM> | 2009-03-19 14:45:10 -0700 |
---|---|---|
committer | Tony Nguyen <Ton.Nguyen@Sun.COM> | 2009-03-19 14:45:10 -0700 |
commit | 42096647a1cb1ee493b238f2713f001b8b039514 (patch) | |
tree | 8bc3b11b1f8eb8697cdb9e738c2426c947c6d519 /usr/src/cmd/auditreduce/token.c | |
parent | 4c17c04f214dbe4ce468ba6e06def8cbefbead74 (diff) | |
download | illumos-joyent-42096647a1cb1ee493b238f2713f001b8b039514.tar.gz |
6617821 adt_export_data_t needs to avoid using variable-sized types
Diffstat (limited to 'usr/src/cmd/auditreduce/token.c')
-rw-r--r-- | usr/src/cmd/auditreduce/token.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/cmd/auditreduce/token.c b/usr/src/cmd/auditreduce/token.c index a507780cf5..0304828072 100644 --- a/usr/src/cmd/auditreduce/token.c +++ b/usr/src/cmd/auditreduce/token.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -1946,7 +1946,7 @@ int label_token(adr_t *adr) { static m_label_t *label = NULL; - static size_t l_size; + static size32_t l_size; int len; if (label == NULL) { |