diff options
author | Havoc Pennington <hp@redhat.com> | 2003-06-25 01:05:46 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-06-25 01:05:46 +0000 |
commit | 6fba6839f5cb730791edcc48f1fa65a74f118a5b (patch) | |
tree | 61b44c7715792944261ef149a63f0913df02e8b6 /mono/DBus.cs | |
parent | f55377a708a404ab2c791421ff5f78121c7e50ac (diff) |
2003-06-24 Havoc Pennington <hp@pobox.com>
* mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
Diffstat (limited to 'mono/DBus.cs')
-rw-r--r-- | mono/DBus.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mono/DBus.cs b/mono/DBus.cs index e2751841..f6f8b003 100644 --- a/mono/DBus.cs +++ b/mono/DBus.cs @@ -17,7 +17,7 @@ namespace DBus { internal static void Init () { if (!initialized) { initialized = true; - g_thread_init ((IntPtr) 0); + g_thread_init (IntPtr.Zero); dbus_gthread_init (); } } |