From: Ben Pfaff Date: Sun, 5 Oct 2008 21:56:38 +0000 (-0700) Subject: Fix typo in comment. X-Git-Tag: v0.7.1~50^2~31 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4b4f06dbfcff9582548a72d4e9ca0ffc90077fc;p=pspp-builds.git Fix typo in comment. --- diff --git a/src/libpspp/sparse-array.c b/src/libpspp/sparse-array.c index eba5d832..7af219bc 100644 --- a/src/libpspp/sparse-array.c +++ b/src/libpspp/sparse-array.c @@ -88,7 +88,7 @@ struct sparse_array /* An internal node in the radix tree. */ struct internal_node { - int count; /* Number of nonnul children. */ + int count; /* Number of nonnull children. */ union pointer down[PTRS_PER_LEVEL]; /* Children. */ };