Changeset 5447c59
- Timestamp:
- 2018-03-10T11:33:19Z (7 years ago)
- Parents:
- 7a9d968
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_lib.c
r7a9d968 r5447c59 307 307 308 308 for (i = 0; i < json_array_get_count(c); i++) { 309 jintid = json_array_get_integer(c, i);309 gint64 id = json_array_get_integer(c, i); 310 310 311 311 txl->list = g_slist_prepend(txl->list, 312 g_strdup_printf("%" PRIu64, id);312 g_strdup_printf("%" G_GINT64_FORMAT, id)); 313 313 } 314 314 … … 450 450 unsigned int i; 451 451 for (i = 0; i < json_array_get_count(arr); i++) { 452 jintid = json_array_get_integer(arr, i);452 gint64 id = json_array_get_integer(arr, i); 453 453 txl->list = g_slist_prepend(txl->list, 454 g_strdup_printf("%" PRId64, id));454 g_strdup_printf("%" G_GINT64_FORMAT, id)); 455 455 } 456 456 }
Note: See TracChangeset
for help on using the changeset viewer.