aboutsummaryrefslogtreecommitdiffstats
path: root/awkgram.y
diff options
context:
space:
mode:
Diffstat (limited to 'awkgram.y')
-rw-r--r--awkgram.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/awkgram.y b/awkgram.y
index a6669e97..1d7bf813 100644
--- a/awkgram.y
+++ b/awkgram.y
@@ -4396,9 +4396,9 @@ variable(int location, char *name, NODETYPE type)
for (dv = deferred_variables; true; dv = dv->next) {
if (dv == NULL) {
- /*
- * This is the only case in which we may not free the string.
- */
+ /*
+ * This is the only case in which we may not free the string.
+ */
return install_symbol(name, type);
}
if (strcmp(name, dv->name) == 0) {