We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a71534 commit 910a1b3Copy full SHA for 910a1b3
Changelog.md
@@ -2,6 +2,10 @@
2
3
## [Unreleased]
4
5
+## [4.3.1] - 2024-06-30
6
+
7
+- [network] fix network_unit return value
8
9
## [4.3.0] - 2024-06-30
10
11
- [cbm] Implement hash functions in commodore.
common/src/fn_network/network_unit.c
@@ -20,7 +20,7 @@ uint8_t network_unit(char *devicespec)
20
return 1;
21
22
if (devicespec[2] == ':') {
23
- return devicespec[1] - 0x30;
+ return devicespec[1] - '0';
24
}
25
26
version.txt
@@ -1 +1 @@
1
-4.3.0
+4.3.1
0 commit comments