X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/c6f2d14d9c38345075629af3487c2de491584ca1..c5755ce22669bc863d6319783cc9d5d38a5bdbcc:/sbr/context_foil.c diff --git a/sbr/context_foil.c b/sbr/context_foil.c index e8407066..9aa02dba 100644 --- a/sbr/context_foil.c +++ b/sbr/context_foil.c @@ -47,11 +47,11 @@ context_foil (char *path) NEW(np); m_defs = np; if (!(np->n_name = strdup ("Path"))) { - advise (NULL, "strdup failed"); + inform("strdup failed"); return -1; } if (!(np->n_field = strdup (path))) { - advise (NULL, "strdup failed"); + inform("strdup failed"); return -1; } np->n_context = 0; @@ -59,7 +59,7 @@ context_foil (char *path) if (mypath == NULL && (mypath = getenv ("HOME")) != NULL) if (!(mypath = strdup (mypath))) { - advise (NULL, "strdup failed"); + inform("strdup failed"); return -1; } }