diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 16:56:48 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 16:56:48 +0000 |
commit | a98cb123dfec90f5fd85357e7ee05b97d1e63589 (patch) | |
tree | 291562d8015cd287e451cda2cae51fa7b08b9547 | |
parent | 7bd2e21080c1d879071dc9c45a2d4aaf6db24cc7 (diff) |
(store_encode):
Make CLASS var const.
-rw-r--r-- | libstore/encode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstore/encode.c b/libstore/encode.c index 29e370d2..0a9e793f 100644 --- a/libstore/encode.c +++ b/libstore/encode.c @@ -83,7 +83,7 @@ error_t store_encode (const struct store *store, struct store_enc *enc) { error_t err; - struct store_class *class = store->class; + const struct store_class *class = store->class; /* We zero each vector length for the allocate_encoding method to work, so save the old values. */ mach_msg_type_number_t init_num_ports = enc->num_ports; |