-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compile-time bug on armhf platforms.
Our code was expecting size_t to be a long unsigned int. However, on armhf, it is only an unsigned int. Turns out C99 added the printf() modifier %zu which always works!
- Loading branch information
1 parent
d9a3c8f
commit 79b38bb
Showing
7 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
aprs-weather-submit (1.7-2) jammy; urgency=medium | ||
aprs-weather-submit (1.7.1-1) unstable; urgency=medium | ||
|
||
* The icon can now be changed from the default (WX) icon using the new | ||
`--icon` option. | ||
* Output of `snprintf()` is now better checked to make sure we haven't | ||
overflowed our buffer. | ||
* Fixed a compile-time error on armhf platforms. | ||
|
||
-- Colin Cogle <[email protected]> Thu, 30 Nov 2023 00:32:00 -0500 | ||
-- Colin Cogle <[email protected]> Thu, 30 Nov 2023 01:32:00 -0500 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
aprs-weather-submit-dbgsym_1.7-2_amd64.ddeb debug optional automatic=yes | ||
aprs-weather-submit_1.7-2_amd64.buildinfo hamradio optional | ||
aprs-weather-submit_1.7-2_amd64.deb hamradio optional | ||
aprs-weather-submit-dbgsym_1.7-1.1_amd64.ddeb debug optional automatic=yes | ||
aprs-weather-submit_1.7.1-1_amd64.buildinfo hamradio optional | ||
aprs-weather-submit_1.7.1-1_amd64.deb hamradio optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters