summaryrefslogtreecommitdiffstats
path: root/src/Util.vala
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2010-07-11 12:03:52 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2010-07-11 12:03:52 +0200
commitefdd8b44b2fcc7fcf4f7ba37ac4045793be8fecd (patch)
treeffdd106d614cecb7281ae533e7dd5659ca66e871 /src/Util.vala
parent21dd3cb9a40b6bef5dbea8534557c3d6c0eebed8 (diff)
downloadeva-efdd8b44b2fcc7fcf4f7ba37ac4045793be8fecd.tar
eva-efdd8b44b2fcc7fcf4f7ba37ac4045793be8fecd.zip
Many API improvements and more bugfixes
Diffstat (limited to 'src/Util.vala')
-rw-r--r--src/Util.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Util.vala b/src/Util.vala
index 28cce58..e840a07 100644
--- a/src/Util.vala
+++ b/src/Util.vala
@@ -36,7 +36,7 @@ namespace Eva {
return List.empty;
}
else {
- return new List(new UInt(str.get_char()), string_to_list(str.next_char()));
+ return new Cons(new UInt(str.get_char()), string_to_list(str.next_char()));
}
}
}