Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(243)

Unified Diff: src/runtime/defs_freebsd_amd64.go

Issue 177770043: [dev.cc] code review 177770043: runtime: change set_sec to take int64 (Closed)
Patch Set: diff -r 343536a6d6acc4292427cf39a4f3e2997c2f9060 https://code.google.com/p/go Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/defs_freebsd_386.go ('k') | src/runtime/defs_freebsd_arm.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/defs_freebsd_amd64.go
===================================================================
--- a/src/runtime/defs_freebsd_amd64.go
+++ b/src/runtime/defs_freebsd_amd64.go
@@ -196,8 +196,8 @@
tv_nsec int64
}
-func (ts *timespec) set_sec(x int32) {
- ts.tv_sec = int64(x)
+func (ts *timespec) set_sec(x int64) {
+ ts.tv_sec = x
}
type timeval struct {
« no previous file with comments | « src/runtime/defs_freebsd_386.go ('k') | src/runtime/defs_freebsd_arm.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b