wrl/client.h: Fixed a typo.
diff --git a/mingw-w64-headers/include/wrl/client.h b/mingw-w64-headers/include/wrl/client.h
index 5e3e0c3..83b4cb3 100644
--- a/mingw-w64-headers/include/wrl/client.h
+++ b/mingw-w64-headers/include/wrl/client.h
@@ -79,7 +79,7 @@
             ComPtr() throw() : ptr_(nullptr) {}
             ComPtr(decltype(nullptr)) throw() : ptr_(nullptr) {}
 
-            template<class U> ComPtr(U *other) throw() : ptr_(other.ptr_) {
+            template<class U> ComPtr(U *other) throw() : ptr_(other) {
                 InternalAddRef();
             }