Changeset 5447c59


Ignore:
Timestamp:
2018-03-10T11:33:19Z (6 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Parents:
7a9d968
Message:

Finish merge.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_lib.c

    r7a9d968 r5447c59  
    307307
    308308        for (i = 0; i < json_array_get_count(c); i++) {
    309                 jint id = json_array_get_integer(c, i);
     309                gint64 id = json_array_get_integer(c, i);
    310310
    311311                txl->list = g_slist_prepend(txl->list,
    312                                             g_strdup_printf("%" PRIu64, id);
     312                                            g_strdup_printf("%" G_GINT64_FORMAT, id));
    313313        }
    314314
     
    450450                unsigned int i;
    451451                for (i = 0; i < json_array_get_count(arr); i++) {
    452                         jint id = json_array_get_integer(arr, i);
     452                        gint64 id = json_array_get_integer(arr, i);
    453453                        txl->list = g_slist_prepend(txl->list,
    454                                                     g_strdup_printf("%" PRId64, id));
     454                                                    g_strdup_printf("%" G_GINT64_FORMAT, id));
    455455                }
    456456        }
Note: See TracChangeset for help on using the changeset viewer.