diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-01-15 23:02:53 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-01-15 23:02:53 +0000 |
| commit | 613eb25545e26e12c77af7154feb0ad039d86429 (patch) | |
| tree | 5956a952ba1e9efc3ed46ffa591b633bc90a6ddd /stm/adc.c | |
| parent | 5573f9f150d513ed3f996722e2b57b58cfb24f3b (diff) | |
stm: Fix print methods with new kind argument.
Diffstat (limited to 'stm/adc.c')
| -rw-r--r-- | stm/adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -267,7 +267,7 @@ static mp_obj_t adc_obj_read_core_vref(mp_obj_t self_in) { return ret; } -static void adc_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in) { +static void adc_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { pyb_adc_obj_t *self = self_in; print(env, "<ADC %lu>", self->adc_id); } |
