diff options
Diffstat (limited to 'src/output/slbt_output_config.c')
-rw-r--r-- | src/output/slbt_output_config.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/output/slbt_output_config.c b/src/output/slbt_output_config.c index d1d9712..800c6c3 100644 --- a/src/output/slbt_output_config.c +++ b/src/output/slbt_output_config.c @@ -63,6 +63,9 @@ int slbt_output_config(const struct slbt_driver_ctx * dctx) if ((len = strlen(cctx->host.dlltool)) > midwidth) midwidth = len; + if ((len = strlen(cctx->host.mdso)) > midwidth) + midwidth = len; + midwidth += SLBT_TAB_WIDTH; midwidth &= (~(SLBT_TAB_WIDTH-1)); @@ -93,6 +96,9 @@ int slbt_output_config(const struct slbt_driver_ctx * dctx) if (slbt_output_config_line("dlltool",cctx->host.dlltool,cctx->cfgmeta.dlltool,midwidth)) return SLBT_SYSTEM_ERROR(dctx); + if (slbt_output_config_line("mdso",cctx->host.mdso,cctx->cfgmeta.mdso,midwidth)) + return SLBT_SYSTEM_ERROR(dctx); + return fflush(stdout) ? SLBT_SYSTEM_ERROR(dctx) : 0; |