aboutsummaryrefslogtreecommitdiffstats
path: root/src/mysqlerl.c
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-03-02 12:55:52 -0500
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-03-02 12:55:52 -0500
commit42c78117ef020ac51c410fe4383160df15ac62a6 (patch)
tree9d8441f44ef2a450c143611a53234d0c82d12547 /src/mysqlerl.c
parent103bff77c6b6018b8057a95dd68c820cb5887498 (diff)
downloadmysqlerl-42c78117ef020ac51c410fe4383160df15ac62a6.tar.gz
mysqlerl-42c78117ef020ac51c410fe4383160df15ac62a6.zip
NULL -> null
Diffstat (limited to 'src/mysqlerl.c')
-rw-r--r--src/mysqlerl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mysqlerl.c b/src/mysqlerl.c
index 4c3022a..ae5ae56 100644
--- a/src/mysqlerl.c
+++ b/src/mysqlerl.c
@@ -63,7 +63,7 @@ make_row(MYSQL_ROW row, unsigned long *lengths, unsigned int num_fields)
if (row[i])
rowtup[i] = erl_mk_estring(row[i], lengths[i]);
else
- rowtup[i] = erl_mk_atom("NULL");
+ rowtup[i] = erl_mk_atom("null");
}
rc = erl_mk_tuple(rowtup, num_fields);