summaryrefslogtreecommitdiff
path: root/src/roff/troff/node.cpp
diff options
context:
space:
mode:
authorG. Branden Robinson <g.branden.robinson@gmail.com>2022-08-23 08:22:55 -0500
committerG. Branden Robinson <g.branden.robinson@gmail.com>2022-08-23 13:03:21 -0500
commit4bee153f83d2cd6c84ecce6c3f392ba7fcccce2c (patch)
treea9b3a5aaec81391646246949cdf04f66c5219264 /src/roff/troff/node.cpp
parent085765dca1cacc5bd643a4582a79c1fd415af469 (diff)
downloadgroff-git-4bee153f83d2cd6c84ecce6c3f392ba7fcccce2c.tar.gz
src/roff/troff/node.cpp: Fix code style nit.
* src/roff/troff/node.cpp: Fix code style nit. Put space around binary arithmetic operators. Put a space after `sizeof` because it is an operator, not a function.
Diffstat (limited to 'src/roff/troff/node.cpp')
-rw-r--r--src/roff/troff/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roff/troff/node.cpp b/src/roff/troff/node.cpp
index 6a33c169e..96697e076 100644
--- a/src/roff/troff/node.cpp
+++ b/src/roff/troff/node.cpp
@@ -6103,7 +6103,7 @@ int font_family::make_definite(int mounting_position)
if (pos >= map_size)
map_size = pos + 10;
map = new int[map_size];
- memcpy(map, old_map, old_map_size*sizeof(int));
+ memcpy(map, old_map, old_map_size * sizeof (int));
delete[] old_map;
for (int j = old_map_size; j < map_size; j++)
map[j] = -1;