~mardy/libaccounts-glib/s390-tests

« back to all changes in this revision

Viewing changes to libaccounts-glib/ag-account.c

  • Committer: Alberto Mardegan
  • Date: 2015-12-18 14:58:26 UTC
  • Revision ID: alberto.mardegan@canonical.com-20151218145826-zk54187olijbpoco
all tests, no wrap

Show diffs side-by-side

added added

removed removed

Lines of Context:
291
291
 
292
292
    if (ts)
293
293
    {
294
 
        g_variant_builder_add (&builder, "u", ts->tv_sec);
295
 
        g_variant_builder_add (&builder, "u", ts->tv_nsec);
 
294
        guint u32 = ts->tv_sec;
 
295
        g_variant_builder_add (&builder, "u", u32);
 
296
        u32 = ts->tv_nsec;
 
297
        g_variant_builder_add (&builder, "u", u32);
296
298
    }
297
299
    g_variant_builder_add (&builder, "u", account->id);
298
300
    g_variant_builder_add (&builder, "b", changes->created);