summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-03-11 23:19:20 +0000
committerCarl Hetherington <cth@carlh.net>2015-03-11 23:19:20 +0000
commitb249b91efe6fe9686d8797fedae6c052b2b80626 (patch)
tree658f60bf17d0701c54bffcca6a1d34684ac7cbdc /src
parentf66b11fc69599e4a821847284c510498ba79e76f (diff)
Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/stl_binary_tables.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stl_binary_tables.cc b/src/stl_binary_tables.cc
index df571c4..9aaf4b8 100644
--- a/src/stl_binary_tables.cc
+++ b/src/stl_binary_tables.cc
@@ -327,7 +327,7 @@ STLBinaryTables::STLBinaryTables ()
code<Justification, int> (_justification_map, 0, JUSTIFICATION_NONE, "No justification");
code<Justification, int> (_justification_map, 1, JUSTIFICATION_LEFT, "Left justification");
code<Justification, int> (_justification_map, 2, JUSTIFICATION_CENTRE, "Centre justification");
- code<Justification, int> (_justification_map, 3, JUSTIFICATION_CENTRE, "Right justification");
+ code<Justification, int> (_justification_map, 3, JUSTIFICATION_RIGHT, "Right justification");
code<Comment, int> (_comment_map, 0, COMMENT_NO, "Not a comment");
code<Comment, int> (_comment_map, 1, COMMENT_YES, "Is a comment");