Exit status of test-s390x(.c)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/clisp?expand=0&rev=101
This commit is contained in:
Dr. Werner Fink 2018-02-19 12:39:16 +00:00 committed by Git OBS Bridge
parent 52c85abc0d
commit 19ca5cb732

View File

@ -239,5 +239,5 @@ int main()
unsigned long int hours_since_1900 = ((unsigned long)now / 3600) - hourswest + 613608;
unsigned long int days_since_1900 = (hours_since_1900 + 6) / 24;
int candles = hebrew_calendar_hanukka_candles(days_since_1900);
return printf("candles = %d\n", candles) > 0;
return printf("candles = %d\n", candles) > 0 ? 0 : 1;
}