From 97c7da1637d27b1c37ff9f8c95db6cddff94b31c Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 27 Mar 2012 20:52:11 -0700 Subject: [PATCH] psppire-data-store: Use NULL for a null pointer. --- src/ui/gui/psppire-data-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2