2004-10-05 Marcus Brinkmann <marcus@g10code.de>

* op-support.c (_gpgme_op_data_lookup): Use char pointer for
	pointer arithmetic.
This commit is contained in:
Marcus Brinkmann 2004-10-05 15:08:45 +00:00
parent ee3186519d
commit 9bccf0d830
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-10-05 Marcus Brinkmann <marcus@g10code.de>
* op-support.c (_gpgme_op_data_lookup): Use char pointer for
pointer arithmetic.
2004-09-30 Marcus Brinkmann <marcus@g10code.de>
* gpgme.m4: Implement the --api-version check.

View File

@ -50,7 +50,7 @@ _gpgme_op_data_lookup (gpgme_ctx_t ctx, ctx_op_data_id_t type, void **hook,
data->next = ctx->op_data;
data->type = type;
data->cleanup = cleanup;
data->hook = ((void *) data) + sizeof (struct ctx_op_data);
data->hook = (void *) (((char *) data) + sizeof (struct ctx_op_data));
ctx->op_data = data;
}
*hook = data->hook;