From: Ben Pfaff Date: Wed, 28 Mar 2012 03:52:11 +0000 (-0700) Subject: psppire-data-store: Use NULL for a null pointer. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=97c7da1637d27b1c37ff9f8c95db6cddff94b31c psppire-data-store: Use NULL for a null pointer. --- diff --git a/src/ui/gui/psppire-data-store.c b/src/ui/gui/psppire-data-store.c index f994474b5b..43e101e753 100644 --- a/src/ui/gui/psppire-data-store.c +++ b/src/ui/gui/psppire-data-store.c @@ -239,7 +239,7 @@ psppire_data_store_get_case_count_wrapper (const PsppireSheetModel *model) static void psppire_data_store_init (PsppireDataStore *data_store) { - data_store->dict = 0; + data_store->dict = NULL; data_store->datasheet = NULL; data_store->dispose_has_run = FALSE; }