mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-01 16:40:33 +00:00
Remove workaround with linkme crate in 0658b35d86ce6719d757ecdf6f7d090f2fdac2f1 commit.
In taskwarrior 3.1.0, Cargo.lock has linkme crate version 0.3.27 which
added Android support.
38cb074be7
12 lines
298 B
Plaintext
12 lines
298 B
Plaintext
--- a/src/tc/lib/src/atomic.rs
|
|
+++ b/src/tc/lib/src/atomic.rs
|
|
@@ -22,7 +22,7 @@
|
|
|
|
unsafe fn from_ctype(self) -> Option<DateTime<Utc>> {
|
|
if self != 0 {
|
|
- return Some(utc_timestamp(self));
|
|
+ return Some(utc_timestamp(self.into()));
|
|
}
|
|
None
|
|
}
|