Index: main/frame.c =================================================================== --- main/frame.c (revision 238997) +++ main/frame.c (working copy) @@ -704,7 +704,7 @@ } snprintf(hex, sizeof(hex), "(0x%Lx)", 1LL << i); - ast_cli(a->fd, "%19Lu (1 << %2d) %20s %5s %8s (%s)\n", 1LL << i, i, hex, + ast_cli(a->fd, "%19llu (1 << %2d) %20s %5s %8s (%s)\n", 1LL << i, i, hex, ((1LL << i) & AST_FORMAT_AUDIO_MASK) ? "audio" : i == 16 || i == 17 ? "image" : ((1LL << i) & AST_FORMAT_VIDEO_MASK) ? "video" : @@ -749,7 +749,7 @@ for (i = 0; i < 63; i++) if (codec & (1LL << i)) { found = 1; - ast_cli(a->fd, "%11Lu (1 << %2d) %s\n", 1LL << i, i, ast_codec2str(1LL << i)); + ast_cli(a->fd, "%11llu (1 << %2d) %s\n", 1LL << i, i, ast_codec2str(1LL << i)); } if (!found)