diff options
author | midipix <writeonce@midipix.org> | 2016-04-26 12:12:48 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-26 12:12:48 -0400 |
commit | 1573d06ec4e92a080dc1c40c26ca1d95ecdc7b2b (patch) | |
tree | ab2d13780b04d0b06f70b82b7d168d8a19fad971 /src/driver | |
parent | 9ff9ad38a4656a8e3f3d49bdbd9a5f08d490d096 (diff) | |
download | slibtool-1573d06ec4e92a080dc1c40c26ca1d95ecdc7b2b.tar.bz2 slibtool-1573d06ec4e92a080dc1c40c26ca1d95ecdc7b2b.tar.xz |
driver: fix image format flag typo.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 15cc81d..e97130f 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -514,7 +514,7 @@ static void slbt_init_flavor_settings( else if (!strcmp(settings->imagefmt,"pe")) cctx->drvflags |= SLBT_DRIVER_IMAGE_PE; else if (!strcmp(settings->imagefmt,"macho")) - cctx->drvflags |= SLBT_DRIVER_IMAGE_PE; + cctx->drvflags |= SLBT_DRIVER_IMAGE_MACHO; } memcpy(psettings,settings,sizeof(*settings)); |