Comment 2 for bug 982221

Revision history for this message
Roman Yepishev (rye) wrote :

Confirming on 32bit system, the following code works correctly on x86_64 but outputs 0:0:5902 on 32 bit.

using GLib;

int main(string[] args) {
    var t = GLib.Time();
    t.second = 5902;
    t.mktime();
    stdout.printf("%s\n", t.format("%T"));
    return 0;
}