X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsysfile-info.c;h=25279b66040f830164fc16d6ba7e9da7297972df;hb=2e0595dd8e344dbdcab740d7d2a3b67d153d6b39;hp=dda4f546429a23e7b5f1c60fceb2e0be0211cf08;hpb=fa77efde13ecbb261b90109142453850b283b950;p=pspp-builds.git diff --git a/src/sysfile-info.c b/src/sysfile-info.c index dda4f546..25279b66 100644 --- a/src/sysfile-info.c +++ b/src/sysfile-info.c @@ -102,10 +102,7 @@ cmd_sysfile_info (void) tab_text (t, 1, 2, TAB_LEFT | TAT_PRINTF, "%s %s by %s", inf.creation_date, inf.creation_time, inf.product); tab_text (t, 0, 3, TAB_LEFT, _("Endian:")); - tab_text (t, 1, 3, TAB_LEFT, - (inf.endianness == BIG ? _("Big.") - : (inf.endianness == LITTLE ? _("Little.") - : (assert (0), _(""))))); + tab_text (t, 1, 3, TAB_LEFT, inf.bigendian ? _("Big.") : _("Little.")); tab_text (t, 0, 4, TAB_LEFT, _("Variables:")); tab_text (t, 1, 4, TAB_LEFT | TAT_PRINTF, "%d", d->nvar);