From: Sebastien Bourdeauducq Date: Sun, 17 Feb 2013 15:21:25 +0000 (+0100) Subject: bios: use puts for long string X-Git-Tag: 24jan2021_ls180~3045 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=07120e3c3e418ac8e93241171375944850af84c7;p=litex.git bios: use puts for long string --- diff --git a/software/bios/main.c b/software/bios/main.c index 20ffd0d0..b81ce687 100644 --- a/software/bios/main.c +++ b/software/bios/main.c @@ -427,7 +427,7 @@ static const char banner[] = "Built "__DATE__" "__TIME__"\n\n" "This program is free software: you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation, version 3 of the License.\n"; + "the Free Software Foundation, version 3 of the License."; static void readstr(char *s, int size) { @@ -520,7 +520,7 @@ int main(int i, char **c) irq_setmask(0); irq_setie(1); uart_init(); - printf(banner); + puts(banner); crcbios(); if(rescue) printf("Rescue mode\n");