openalbridge/wrappers.c
changeset 2211 288360b78f30
parent 2210 1cb7118a77dd
child 2212 6b5da1a2765a
--- a/openalbridge/wrappers.c	Mon Jun 29 03:47:39 2009 +0000
+++ b/openalbridge/wrappers.c	Mon Jun 29 20:01:05 2009 +0000
@@ -26,8 +26,8 @@
 	
 	void *Malloc (size_t nbytes){
 		void *aptr;
-		if ( (aptr = malloc(nbytes)) == NULL) {
-			fprintf(stderr, "ERROR: not enough memory! malloc() failed");
+		if ((aptr = malloc(nbytes)) == NULL) {
+			fprintf(stderr, "ERROR: not enough memory! malloc() failed\n");
 			exit(-1);
 		}
 		return aptr;
@@ -37,7 +37,7 @@
 	FILE *Fopen (const char *fname, char *mode)	{
 		FILE *fp;
 		if ((fp=fopen(fname,mode)) == NULL)
-			fprintf (stderr, "ERROR: can't open file %s in mode '%s'", fname, mode);
+			fprintf (stderr, "ERROR: can't open file %s in mode '%s'\n", fname, mode);
 		return fp;
 	}