diff options
-rw-r--r-- | utils.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -408,12 +408,11 @@ WriteCopyType(FILE *file, const ipc_type_t *it, const char *left, } else { - fprintf(file, "\t{ typedef struct { char data[%d]; } *sp; * (sp) ", - it->itTypeSize); + fprintf(file, "\tmemcpy("); do_skip_vfprintf(file, left, right); - fprintf(file, " = * (sp) "); + fprintf(file, ", "); do_skip_vfprintf(file, right, right); - fprintf(file, "; }\n"); + fprintf(file, ", %d);\n", it->itTypeSize); } } |