Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102852673
D41693.id126811.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
6 KB
Referenced Files
None
Subscribers
None
D41693.id126811.diff
View Options
diff --git a/usr.bin/localedef/collate.c b/usr.bin/localedef/collate.c
--- a/usr.bin/localedef/collate.c
+++ b/usr.bin/localedef/collate.c
@@ -272,7 +272,7 @@
maxpri = maxpri ? maxpri * 2 : 1024;
prilist = realloc(prilist, sizeof (collpri_t) * maxpri);
if (prilist == NULL) {
- fprintf(stderr,"out of memory");
+ fprintf(stderr,"out of memory\n");
return (-1);
}
for (i = numpri; i < maxpri; i++) {
@@ -333,7 +333,7 @@
if (pri->pass == pass) {
/* report a line with the circular symbol */
lineno = pri->lineno;
- fprintf(stderr,"circular reference in order list");
+ fprintf(stderr,"circular reference in order list\n");
return (-1);
}
if ((pri->pri < 0) || (pri->pri >= numpri)) {
@@ -494,7 +494,7 @@
collsym_t *sym;
if ((sym = calloc(1, sizeof(*sym))) == NULL) {
- fprintf(stderr,"out of memory");
+ fprintf(stderr,"out of memory\n");
return;
}
sym->name = name;
@@ -541,7 +541,7 @@
if ((ud = RB_FIND(collundefs, &collundefs, &srch)) == NULL) {
if (((ud = calloc(1, sizeof(*ud))) == NULL) ||
((ud->name = strdup(name)) == NULL)) {
- fprintf(stderr,"out of memory");
+ fprintf(stderr,"out of memory\n");
free(ud);
return (NULL);
}
@@ -565,7 +565,7 @@
cc = RB_FIND(collchars, &collchars, &srch);
if ((cc == NULL) && create) {
if ((cc = calloc(1, sizeof(*cc))) == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return (NULL);
}
for (i = 0; i < NUM_WT; i++) {
@@ -687,7 +687,7 @@
/* this is used to protect ELLIPSIS processing */
if ((lastorder == T_ELLIPSIS) && (type != T_CHAR)) {
- fprintf(stderr, "character value expected");
+ fprintf(stderr, "character value expected\n");
}
for (i = 0; i < COLL_WEIGHTS_MAX; i++) {
@@ -728,7 +728,7 @@
int i;
if (wc < ellipsis_start) {
- fprintf(stderr, "malformed range!");
+ fprintf(stderr, "malformed range!\n");
return;
}
while (ellipsis_start < wc) {
@@ -776,7 +776,7 @@
start_order(T_ELLIPSIS);
if (lastorder != T_CHAR) {
- fprintf(stderr, "illegal starting point for range");
+ fprintf(stderr, "illegal starting point for range\n");
return;
}
@@ -792,12 +792,12 @@
int i;
if (wcslen(wcs) >= COLLATE_STR_LEN) {
- fprintf(stderr,"expanded collation element too long");
+ fprintf(stderr,"expanded collation element too long\n");
return;
}
if ((e = calloc(1, sizeof(*e))) == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return;
}
e->expand = wcs;
@@ -816,7 +816,7 @@
/* A character sequence can only reduce to one element. */
if ((RB_FIND(elem_by_symbol, &elem_by_symbol, e) != NULL) ||
(RB_FIND(elem_by_expand, &elem_by_expand, e) != NULL)) {
- fprintf(stderr, "duplicate collating element definition");
+ fprintf(stderr, "duplicate collating element definition\n");
free(e);
return;
}
@@ -932,7 +932,7 @@
if (s == NULL) {
if ((s = calloc(1, sizeof(*s))) == NULL) {
- fprintf(stderr,"out of memory");
+ fprintf(stderr,"out of memory\n");
return;
}
s->key = new_pri();
@@ -976,7 +976,7 @@
add_subst_pri(int32_t ref)
{
if (curr_subst >= COLLATE_STR_LEN) {
- fprintf(stderr,"substitution string is too long");
+ fprintf(stderr,"substitution string is too long\n");
return;
}
subst_weights[curr_subst] = ref;
@@ -1040,7 +1040,7 @@
return;
if ((w = calloc(1, sizeof(*w))) == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return;
}
w->pri = srch.pri;
@@ -1214,7 +1214,7 @@
RB_COUNT(temp, substs, &substs[i], n);
subst_count[i] = n;
if ((st = calloc(n, sizeof(collate_subst_t))) == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return;
}
n = 0;
@@ -1245,7 +1245,7 @@
RB_NUMNODES(collelem_t, elem_by_expand, &elem_by_expand, chain_count);
chain = calloc(chain_count, sizeof(collate_chain_t));
if (chain == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return;
}
n = 0;
@@ -1265,7 +1265,7 @@
RB_NUMNODES(collchar_t, collchars, &collchars, n);
large = calloc(n, sizeof(collate_large_t));
if (large == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return;
}
diff --git a/usr.bin/localedef/localedef.h b/usr.bin/localedef/localedef.h
--- a/usr.bin/localedef/localedef.h
+++ b/usr.bin/localedef/localedef.h
@@ -174,4 +174,4 @@
int max_wide(void);
//#define _(x) gettext(x)
-#define INTERR fprintf(stderr,"internal fault (%s:%d)", __FILE__, __LINE__)
+#define INTERR fprintf(stderr,"internal fault (%s:%d)\n", __FILE__, __LINE__)
diff --git a/usr.bin/localedef/localedef.c b/usr.bin/localedef/localedef.c
--- a/usr.bin/localedef/localedef.c
+++ b/usr.bin/localedef/localedef.c
@@ -167,7 +167,7 @@
}
if (rv != 0) {
- fprintf(stderr,"source locale data unavailable: %s", src);
+ fprintf(stderr,"source locale data unavailable: %s\n", src);
return;
}
@@ -182,7 +182,7 @@
(void) mkdir(dirname(category_file()), 0755);
if (link(srcpath, category_file()) != 0) {
- fprintf(stderr,"unable to copy locale data: %s",
+ fprintf(stderr,"unable to copy locale data: %s\n",
strerror(errno));
return;
}
diff --git a/usr.bin/localedef/monetary.c b/usr.bin/localedef/monetary.c
--- a/usr.bin/localedef/monetary.c
+++ b/usr.bin/localedef/monetary.c
@@ -93,7 +93,7 @@
(void) asprintf(&str, "%d", n);
if (str == NULL) {
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
return;
}
@@ -167,7 +167,7 @@
(void) asprintf(&s, "%s;%d", mon.mon_grouping, n);
}
if (s == NULL)
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
free((char *)mon.mon_grouping);
mon.mon_grouping = s;
diff --git a/usr.bin/localedef/numeric.c b/usr.bin/localedef/numeric.c
--- a/usr.bin/localedef/numeric.c
+++ b/usr.bin/localedef/numeric.c
@@ -93,7 +93,7 @@
(void) asprintf(&s, "%s;%d", numeric.grouping, n);
}
if (s == NULL)
- fprintf(stderr, "out of memory");
+ fprintf(stderr, "out of memory\n");
free((char *)numeric.grouping);
numeric.grouping = s;
diff --git a/usr.bin/localedef/time.c b/usr.bin/localedef/time.c
--- a/usr.bin/localedef/time.c
+++ b/usr.bin/localedef/time.c
@@ -104,7 +104,7 @@
return;
}
}
- fprintf(stderr,"too many list elements");
+ fprintf(stderr,"too many list elements\n");
}
void
@@ -137,7 +137,7 @@
} else if (tm.pm == NULL) {
tm.pm = str;
} else {
- fprintf(stderr,"too many list elements");
+ fprintf(stderr,"too many list elements\n");
free(str);
}
break;
@@ -180,11 +180,11 @@
case T_ALT_DIGITS:
return;
default:
- fprintf(stderr,"unknown list");
+ fprintf(stderr,"unknown list\n");
break;
}
- fprintf(stderr,"too few items in list (%d)", last_kw);
+ fprintf(stderr,"too few items in list (%d)\n", last_kw);
}
void
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 19, 12:28 AM (21 h, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14707347
Default Alt Text
D41693.id126811.diff (6 KB)
Attached To
Mode
D41693: localedef: add newlines to error messages
Attached
Detach File
Event Timeline
Log In to Comment