aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fake-msi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fake-msi.c b/fake-msi.c
index 3f82f74..bbde0cb 100644
--- a/fake-msi.c
+++ b/fake-msi.c
@@ -181,7 +181,7 @@ uint32_t MsiViewModify(MsiView *view, uint32_t mode, MsiRecord *rec)
181 ctx->argsize = ctx->nargs * 5 / 4 + 16; 181 ctx->argsize = ctx->nargs * 5 / 4 + 16;
182 ctx->args = sresize(ctx->args, ctx->argsize, char *); 182 ctx->args = sresize(ctx->args, ctx->argsize, char *);
183 } 183 }
184 ctx->args[ctx->nargs++] = dupcat("-s", (const char *)NULL); 184 ctx->args[ctx->nargs++] = dupcat("-a", (const char *)NULL);
185 ctx->args[ctx->nargs++] = dupcat(rec->name, (const char *)NULL); 185 ctx->args[ctx->nargs++] = dupcat(rec->name, (const char *)NULL);
186 ctx->args[ctx->nargs++] = dupcat(rec->data, (const char *)NULL); 186 ctx->args[ctx->nargs++] = dupcat(rec->data, (const char *)NULL);
187 } 187 }