From 50e3b816f2868bab615ad2b9e81490d5350f2010 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 18 Jan 2001 13:58:45 +0100 Subject: [PATCH] Minor fix. Rev: src/dlopen.c:1.9 --- src/dlopen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dlopen.c b/src/dlopen.c index 2e9d6143f8..015f15fff4 100644 --- a/src/dlopen.c +++ b/src/dlopen.c @@ -79,7 +79,7 @@ size_t STRNLEN(char *s, size_t maxlen) #else /* PIKE_CONCAT */ -RCSID("$Id: dlopen.c,v 1.8 2001/01/18 02:19:24 hubbe Exp $"); +RCSID("$Id: dlopen.c,v 1.9 2001/01/18 12:58:45 grubba Exp $"); #endif @@ -779,9 +779,9 @@ static int dl_load_coff_files(struct DLHandle *ret, if(!ret->memory) { static char buf[300]; - sprintf(buf,"Failed to allocate %d bytes RWX-memory.\n",ret->memsize); + sprintf(buf, "Failed to allocate %d bytes RWX-memory.", ret->memsize); #ifdef DLDEBUG - fprintf(stderr,buf); + fprintf(stderr, "%s\n", buf); #endif dlerr=buf; return -1; -- GitLab