diff --git a/res/res_features.c b/res/res_features.c
index 51c75e1f62424f5c4b9a6c388db0be615ac2053f..9d6356ae71286d78ab7f3f001db8c58048b54827 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -2885,7 +2885,7 @@ static int load_config(void)
 				parkingtime = parkingtime * 1000;
 		} else if (!strcasecmp(var->name, "parkpos")) {
 			if (sscanf(var->value, "%d-%d", &start, &end) != 2) {
-				ast_log(LOG_WARNING, "Format for parking positions is a-b, where a and b are numbers at line %d of parking.conf\n", var->lineno);
+				ast_log(LOG_WARNING, "Format for parking positions is a-b, where a and b are numbers at line %d of features.conf\n", var->lineno);
 			} else {
 				parking_start = start;
 				parking_stop = end;