Skip to content

Commit

Permalink
Use the 'dot' utf-8 encoded value instead of the char directly
Browse files Browse the repository at this point in the history
Compilation was broken on latest Debian Sid (gcc-13) complaining
about unmappable character (0xE2) for encoding US-ASCII.

The commit change the utf-8 dot char by its encoded representation
\u2022.

Signed-off-by: Jose Luis Rivero <jrivero@osrfoundation.org>
  • Loading branch information
j-rivero authored and nosracd committed Feb 4, 2024
1 parent 5b83115 commit 8cd5cd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lcm-java/lcm/logging/LogPlayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ public void windowClosing(WindowEvent e) {
}

{
String spacer = " ";
String spacer = " \u2022 ";
String filename = p.logName.getText();

String title = "LogPlayer";
Expand Down
2 changes: 1 addition & 1 deletion lcm-java/lcm/spy/Spy.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public Spy(String lcmurl, WindowTitleOptions titleOptions) throws IOException
}
String title = "LCM Spy";
{
String spacer = " ";
String spacer = " \u2022 ";
if (null != titleOptions.label) {
title += spacer + titleOptions.label;
}
Expand Down

0 comments on commit 8cd5cd9

Please sign in to comment.