diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-12-08 12:26:08 +0000 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-12-08 12:26:08 +0000 |
commit | 4c1ede779eab302e5db689ad9990c9aa2e56b237 (patch) | |
tree | 9e74d6f2a69125ef9048923c5ec80cf039267fc8 /src/utils.c | |
parent | a257703e59163b4f38c38f549179b8e45ac68c63 (diff) |
Break at 80 columns
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 5064555..a457857 100644 --- a/src/utils.c +++ b/src/utils.c @@ -144,7 +144,8 @@ create_file_safely (const char *filename, unsigned int truncate_file) if (fstatinfo.st_nlink > 1 || !S_ISREG (lstatinfo.st_mode)) { fprintf (stderr, - "%s: The file %s has too many links, or is not a regular file: %s\n", + "%s: The file %s has too many links, " + "or is not a regular file: %s\n", PACKAGE, filename, strerror (errno)); close (fildes); return -EMLINK; |