diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-06-03 14:59:53 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-06-03 14:59:53 +0000 |
commit | 380b8a59dccaf828f5fc0c0961195c71479217dd (patch) | |
tree | 5300b324e64a89059386719468e024bde44c2664 /src/libstddjb/tai_add.c | |
parent | effe4db8a69d475ae77bb7bf85bf53c009445d0e (diff) | |
download | skalibs-380b8a59dccaf828f5fc0c0961195c71479217dd.tar.xz |
Bugfix: remove overflow checking in tai?_add/subv2.3.5.0
(because it doesn't work with relative times, duh!)
Diffstat (limited to 'src/libstddjb/tai_add.c')
-rw-r--r-- | src/libstddjb/tai_add.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstddjb/tai_add.c b/src/libstddjb/tai_add.c index ad481ea..5a3d47a 100644 --- a/src/libstddjb/tai_add.c +++ b/src/libstddjb/tai_add.c @@ -4,5 +4,6 @@ int tai_add (tai_t *t, tai_t const *u, tai_t const *v) { - return tai_u64(t, tai_sec(u) + tai_sec(v)) ; + t->x = u->x + v->x ; + return 1 ; } |