summaryrefslogtreecommitdiff
path: root/src/game/g_buildable.c
diff options
context:
space:
mode:
author/dev/humancontroller <devhc@example.com>2014-07-13 19:00:10 +0200
committer/dev/humancontroller <devhc@example.com>2017-03-09 13:51:12 +0100
commite019c8c6bcd796fbd1aeef9e28f4e3df546a9b58 (patch)
treee9610ba376717a879e2b917a31103c4f8253220b /src/game/g_buildable.c
parenta63c1534cc8d8eb5d343a80a2805a2e9e6cd5358 (diff)
remove trailing '\n' characters from error strings
Diffstat (limited to 'src/game/g_buildable.c')
-rw-r--r--src/game/g_buildable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c
index 34136909..a61b0eff 100644
--- a/src/game/g_buildable.c
+++ b/src/game/g_buildable.c
@@ -3103,7 +3103,7 @@ static itemBuildError_t G_SufficientBPAvailable( buildable_t buildable,
}
else
{
- Com_Error( ERR_FATAL, "team is %d\n", team );
+ Com_Error( ERR_FATAL, "team is %d", team );
return IBE_NONE;
}
@@ -3464,7 +3464,7 @@ itemBuildError_t G_CanBuild( gentity_t *ent, buildable_t buildable, int distance
break;
default:
- Com_Error( ERR_FATAL, "No reason for denying build of %d\n", buildable );
+ Com_Error( ERR_FATAL, "No reason for denying build of %d", buildable );
break;
}
}