fix copy in SkTDArray

R=bsalomon@google.com

Review URL: https://codereview.chromium.org/18363003

git-svn-id: http://skia.googlecode.com/svn/trunk@9839 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/core/SkTDArray.h b/include/core/SkTDArray.h
index 66abcd4..8b8bb01 100644
--- a/include/core/SkTDArray.h
+++ b/include/core/SkTDArray.h
@@ -268,7 +268,7 @@
     }
 
     void copy(T* dst) const {
-        this->copyRange(0, fCount, dst);
+        this->copyRange(dst, 0, fCount);
     }
 
     // routines to treat the array like a stack