Skip to content

Commit

Permalink
Update test/asynch.cc
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Todd-L-Miller and github-actions[bot] authored Sep 15, 2023
1 parent 38a042d commit 944a412
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions test/asynch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ void print_claim(SciToken &token, const char *claim) {
}


int
main( int argc, char ** argv) {
if( argc < 2 ) { usage(argv[0]); exit(-1); }
const char * encoded = argv[1];

int main(int argc, char **argv) {
if (argc < 2) {
usage(argv[0]);
exit(-1);
}
const char *encoded = argv[1];
int rv;
char * error;
SciToken token;
Expand Down

0 comments on commit 944a412

Please sign in to comment.