Codebase list libnice / e8ee376
Use %lu for long unsigned int when calling printf Rohan Garg 12 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
367367 StunMessage msg;
368368 uint16_t known_attributes[] = {STUN_ATTRIBUTE_MESSAGE_INTEGRITY, STUN_ATTRIBUTE_USERNAME, 0};
369369
370 printf ("Attribute test message length: %u\n", sizeof (acme));
370 printf ("Attribute test message length: %lu\n", sizeof (acme));
371371
372372 stun_agent_init (&agent, known_attributes,
373373 STUN_COMPATIBILITY_RFC5389, STUN_AGENT_USAGE_SHORT_TERM_CREDENTIALS);