commit | d4b1ed569988d510717bbe36553da97a5f68f113 | [log] [tgz] |
---|---|---|
author | Brian Silverman <brians> | Sat Feb 15 15:26:04 2014 -0800 |
committer | Brian Silverman <brians> | Sat Feb 15 15:26:04 2014 -0800 |
tree | 46621df548389731368871788b2439dc5ecdb95d | |
parent | 6208ca853f25e7f3313d76b6114986e8e6503dab [diff] |
input should be a const pointer...
diff --git a/aos/build/queues/print_field.rb b/aos/build/queues/print_field.rb index 8e9521e..7a9fbb4 100644 --- a/aos/build/queues/print_field.rb +++ b/aos/build/queues/print_field.rb
@@ -18,7 +18,7 @@ namespace aos { -bool PrintField(char *output, size_t *output_bytes, void *input, +bool PrintField(char *output, size_t *output_bytes, const void *input, size_t *input_bytes, uint32_t type) { switch (type) { #{TypeNames.collect do |name|