Browse Source

Make xrealloc and xstrdup style consistent.

master
noname 10 years ago
committed by Roberto E. Vargas Caballero
parent
commit
fa19f241a3
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      st.c

+ 2
- 4
st.c View File

@ -549,12 +549,10 @@ xrealloc(void *p, size_t len) {
char *
xstrdup(char *s) {
char *p = strdup(s);
if (!p)
if((s = strdup(s)) == NULL)
die("Out of memory\n");
return p;
return s;
}
size_t


Loading…
Cancel
Save