[sr-dev] git:master:618a148c: matrix Add \n at the end of log messages where missing

Olle E. Johansson oej at edvina.net
Sat Jan 17 18:20:10 CET 2015


Module: kamailio
Branch: master
Commit: 618a148c6b214bb285fd7cb5fb6620482f7e38d6
URL: https://github.com/kamailio/kamailio/commit/618a148c6b214bb285fd7cb5fb6620482f7e38d6

Author: Olle E. Johansson <oej at edvina.net>
Committer: Olle E. Johansson <oej at edvina.net>
Date: 2015-01-17T18:19:35+01:00

matrix Add \n at the end of log messages where missing

---

Modified: modules/matrix/matrix.c

---

Diff:  https://github.com/kamailio/kamailio/commit/618a148c6b214bb285fd7cb5fb6620482f7e38d6.diff
Patch: https://github.com/kamailio/kamailio/commit/618a148c6b214bb285fd7cb5fb6620482f7e38d6.patch

---

diff --git a/modules/matrix/matrix.c b/modules/matrix/matrix.c
index a218f9f..1279a58 100644
--- a/modules/matrix/matrix.c
+++ b/modules/matrix/matrix.c
@@ -321,7 +321,7 @@ static int matrix_insert(int first, short int second, int res)
 		while (srcitem) {
 			if (srcitem->id == first) {
 				srcitem->second_list[second] = res;
-				LM_DBG("inserted (%d, %d, %d)", first, second, res);
+				LM_DBG("inserted (%d, %d, %d)\n", first, second, res);
 				return 0;
 			}
 			srcitem = srcitem->next;
@@ -329,7 +329,7 @@ static int matrix_insert(int first, short int second, int res)
 		/* not found */
 		srcitem = shm_malloc(sizeof(struct first_t));
 		if (srcitem == NULL) {
-			LM_ERR("out of shared memory.");
+			LM_ERR("out of shared memory.\n");
 			return -1;
 		}
 		memset(srcitem, 0, sizeof(struct first_t));
@@ -343,7 +343,7 @@ static int matrix_insert(int first, short int second, int res)
 		matrix->head = srcitem;
 	}
 
-	LM_DBG("inserted new row for (%d, %d, %d)", first, second, res);
+	LM_DBG("inserted new row for (%d, %d, %d)\n", first, second, res);
 	return 0;
 }
 
@@ -498,7 +498,7 @@ static int db_reload_matrix(void)
 
 	matrix_dbf.free_result(matrix_dbh, res);
 
-	LM_INFO("loaded %d matrix entries.", n);
+	LM_INFO("loaded %d matrix entries.\n", n);
 	return n;
 }
 




More information about the sr-dev mailing list