Show
Ignore:
Timestamp:
09/30/09 04:19:02 (3 years ago)
Author:
H. Peter Anvin <hpa@…>
Children:
6ce3fcc997931e7903408724b4cade3ed09b1e99
Parents:
8ba991f9e17c5bdaa24dccbc5aa0a4e5db690756
git-author:
Gert Hulselmans <kimmik999999@yahoo.co.uk> / 2009-09-29T21:51:17Z+0200
git-committer:
H. Peter Anvin <hpa@zytor.com> / 2009-09-29T21:19:02Z-0700
Message:

chain: missing some \n in error messages

Impact: visual

Some \n where missing in some error() calls.

Signed-off-by: Gert Hulselmans <kimmik999999@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • com32/modules/chain.c

    rf4b44a r633ce8  
    447447 
    448448    if (!mmap) { 
    449         error("Cannot read system memory map"); 
     449        error("Cannot read system memory map\n"); 
    450450        return; 
    451451    } 
     
    548548 
    549549too_big: 
    550     error("Loader file too large"); 
     550    error("Loader file too large\n"); 
    551551    return; 
    552552 
    553553enomem: 
    554     error("Out of memory"); 
     554    error("Out of memory\n"); 
    555555    return; 
    556556} 
     
    615615            uint32_t segval = strtoul(argv[i] + 4, NULL, 0); 
    616616            if (segval < 0x50 || segval > 0x9f000) { 
    617                 error("Invalid segment"); 
     617                error("Invalid segment\n"); 
    618618                goto bail; 
    619619            }