Sdk/Binding: Fix querying argument of type IpAddress

Former-commit-id: 2980c126f7d216dd4537cef6f745928148eee45e
This commit is contained in:
Lynix
2016-05-03 22:44:01 +02:00
parent d253e22c8f
commit 839ab8cebe

View File

@@ -170,7 +170,7 @@ namespace Nz
return 1;
default:
*address = *(*static_cast<IpAddress**>(instance.CheckUserdata(index, "IpAddress")));
*address = *static_cast<IpAddress*>(instance.CheckUserdata(index, "IpAddress"));
return 1;
}
}