Commit 595d1ad
committed
fix(platform): resolve final lifetime errors in linux_ipc.rs
Fixed E0597 lifetime errors by using static string literals instead of
format! strings in error handling:
- Lines 78-80: bind socket error handling
- Lines 97-99: connect socket error handling
This should resolve the remaining compilation errors blocking CI.
Refs #991 parent 5a8a5a1 commit 595d1ad
1 file changed
+4
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
78 | | - | |
79 | | - | |
80 | | - | |
| 78 | + | |
| 79 | + | |
81 | 80 | | |
82 | 81 | | |
83 | 82 | | |
| |||
95 | 94 | | |
96 | 95 | | |
97 | 96 | | |
98 | | - | |
99 | | - | |
100 | | - | |
| 97 | + | |
| 98 | + | |
101 | 99 | | |
102 | 100 | | |
103 | 101 | | |
| |||
0 commit comments