aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ports
diff options
context:
space:
mode:
authorGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-07 19:34:18 +0000
committerGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-07 19:34:18 +0000
commit3c1b28db4d353111bce90de3e2086405268f850d (patch)
tree57f4f448e4946828e4e8d9d0baf824f6f2032c9f /src/ports
parent2e20c248f33e1ee129280dd71492785533908b63 (diff)
Deleted the #endif that's caused the compiler erro
git-svn-id: http://skia.googlecode.com/svn/trunk@1821 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/ports')
-rw-r--r--src/ports/SkTime_Unix.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ports/SkTime_Unix.cpp b/src/ports/SkTime_Unix.cpp
index 7b634c0868..93f8e5db6e 100644
--- a/src/ports/SkTime_Unix.cpp
+++ b/src/ports/SkTime_Unix.cpp
@@ -44,6 +44,4 @@ SkMSec SkTime::GetMSecs()
struct timeval tv;
gettimeofday(&tv, NULL);
return (SkMSec) (tv.tv_sec * 1000 + tv.tv_usec / 1000 ); // microseconds to milliseconds
-}
-
-#endif
+} \ No newline at end of file