* op-support.c (_gpgme_op_data_lookup): Use char pointer for
pointer arithmetic.
+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.
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;