diff --git a/dlls/netprofm/Makefile.in b/dlls/netprofm/Makefile.in index ebb644c0b4f..c491c483c3a 100644 --- a/dlls/netprofm/Makefile.in +++ b/dlls/netprofm/Makefile.in @@ -1,4 +1,3 @@ -EXTRADEFS = -DWINE_NO_LONG_TYPES MODULE = netprofm.dll IMPORTS = iphlpapi diff --git a/dlls/netprofm/list.c b/dlls/netprofm/list.c index 40d2fd9763c..254cf60c263 100644 --- a/dlls/netprofm/list.c +++ b/dlls/netprofm/list.c @@ -226,7 +226,7 @@ static HRESULT WINAPI connection_point_Unadvise( struct connection_point *cp = impl_from_IConnectionPoint( iface ); struct sink_entry *iter; - TRACE( "%p, %d\n", cp, cookie ); + TRACE( "%p, %ld\n", cp, cookie ); LIST_FOR_EACH_ENTRY( iter, &cp->sinks, struct sink_entry, entry ) { @@ -779,7 +779,7 @@ static HRESULT WINAPI networks_enum_Next( struct networks_enum *iter = impl_from_IEnumNetworks( iface ); ULONG i = 0; - TRACE( "%p, %u %p %p\n", iter, count, ret, fetched ); + TRACE( "%p, %lu %p %p\n", iter, count, ret, fetched ); if (fetched) *fetched = 0; if (!count) return S_OK; @@ -802,7 +802,7 @@ static HRESULT WINAPI networks_enum_Skip( { struct networks_enum *iter = impl_from_IEnumNetworks( iface ); - TRACE( "%p, %u\n", iter, count); + TRACE( "%p, %lu\n", iter, count); if (!count) return S_OK; if (!iter->cursor) return S_FALSE; @@ -999,7 +999,7 @@ static HRESULT WINAPI connections_enum_Next( struct connections_enum *iter = impl_from_IEnumNetworkConnections( iface ); ULONG i = 0; - TRACE( "%p, %u %p %p\n", iter, count, ret, fetched ); + TRACE( "%p, %lu %p %p\n", iter, count, ret, fetched ); if (!ret) return E_POINTER; *ret = NULL; @@ -1024,7 +1024,7 @@ static HRESULT WINAPI connections_enum_Skip( { struct connections_enum *iter = impl_from_IEnumNetworkConnections( iface ); - TRACE( "%p, %u\n", iter, count); + TRACE( "%p, %lu\n", iter, count); if (!count) return S_OK; if (!iter->cursor) return S_FALSE;