Skip to content

Commit

Permalink
Fix callsign alignment problem in APRS object msg
Browse files Browse the repository at this point in the history
  • Loading branch information
sm0svx committed Feb 16, 2025
1 parent 404333b commit 9006444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/locationinfo/AprsTcpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ void AprsTcpClient::sendAprsBeacon(Timer *t)
objmsg << loc_cfg.mycall << ">" << loc_cfg.destination
<< "," << loc_cfg.path
<< ":"
<< ";" << el_prefix << el_call << "*"
<< ";" << el_prefix << std::left << std::setw(6) << el_call << "*"
<< timeStr()
<< posStr()
<< std::fixed << std::setw(7) << std::setfill('0')
Expand Down
2 changes: 1 addition & 1 deletion src/versions
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LIBECHOLIB=1.3.4
LIBASYNC=1.7.99.9

# SvxLink versions
SVXLINK=1.8.99.18
SVXLINK=1.8.99.19
MODULE_HELP=1.0.0
MODULE_PARROT=1.1.1
MODULE_ECHO_LINK=1.6.0
Expand Down

0 comments on commit 9006444

Please sign in to comment.