Skip to content

Commit

Permalink
fix: Fix missing newline at the end of usage (shaka-project#1352)
Browse files Browse the repository at this point in the history
Without this, the command prompt will not appear on its own line after
running `packager` with no arguments.
  • Loading branch information
joeyparrish committed Feb 27, 2024
1 parent b68ec87 commit 6276584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packager/app/packager_main.cc
Expand Up @@ -136,7 +136,7 @@ const char kUsage[] =
" used to caption short portions of the audio that might be in a \n"
" foreign language. For DASH this will set role to forced_subtitle, \n"
" for HLS it will set FORCED=YES and AUTOSELECT=YES. \n"
" Only valid for subtitles.";
" Only valid for subtitles.\n";

// Labels for parameters in RawKey key info.
const char kDrmLabelLabel[] = "label";
Expand Down

0 comments on commit 6276584

Please sign in to comment.