diff options
| author | Nalin Dahyabhai <nalin.dahyabhai@pobox.com> | 2009-04-27 16:41:24 -0400 |
|---|---|---|
| committer | Nalin Dahyabhai <nalin.dahyabhai@pobox.com> | 2009-04-27 16:41:24 -0400 |
| commit | a58ffad6bb27535bda6b5ff81414b6334ae459d3 (patch) | |
| tree | d5ab29fa10119adca67dab703a2bffa6dbc20d4a /src/format.c | |
| parent | 33f0a1eccb17a79368a80c40ee2bd53b34c44adc (diff) | |
- fix type mismatch warnings
Diffstat (limited to 'src/format.c')
| -rw-r--r-- | src/format.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format.c b/src/format.c index 93dcb2b..050ca50 100644 --- a/src/format.c +++ b/src/format.c @@ -3349,9 +3349,9 @@ format_get_data_set(struct plugin_state *state, Slapi_Entry *e, for (i = 0; i < this_choice->n_values; i++) { slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id, - "choice: %d at %d\n", - this_choice->values[i]->bv_len, - this_choice->offset - template); + "choice: %ld at %ld\n", + (long) this_choice->values[i]->bv_len, + (long) this_choice->offset); } combinations *= this_choice->n_values; } |
