Fix copy/paste error in GrDrawTarget::AutoStateRestore::set
Review URL: http://codereview.appspot.com/4639063/



git-svn-id: http://skia.googlecode.com/svn/trunk@1670 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gpu/src/GrDrawTarget.cpp b/gpu/src/GrDrawTarget.cpp
index cc64058..0f68872 100644
--- a/gpu/src/GrDrawTarget.cpp
+++ b/gpu/src/GrDrawTarget.cpp
@@ -867,7 +867,7 @@
             fDrawTarget->restoreDrawState(fDrawState);
         }
         if (NULL != target) {
-            fDrawTarget->saveCurrentDrawState(&fDrawState);
+            target->saveCurrentDrawState(&fDrawState);
         }
         fDrawTarget = target;
     }