Skip to content

Commit

Permalink
Revert "disk: fix broken chop error message" (#643)
Browse files Browse the repository at this point in the history
Reverts #642

There's something very mysterious going on, `urbit/urbit` CI segfaults
but `urbit/vere` does not.
  • Loading branch information
pkova authored May 2, 2024
2 parents c305c50 + 7323954 commit 07e781a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/vere/disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,9 @@ u3_disk_chop(u3_disk* log_u, c3_d eve_d)
u3_disk_epoc_list(log_u, sot_d);

if ( len_z <= 2 ) {
fprintf(stderr, "chop: nothing to do, try running roll first\r\nchop: for more info see https://docs.urbit.org/manual/running/vere#chop\r\n");
fprintf(stderr, "chop: nothing to do, try running roll first\r\n"
"chop: for more info see "
"https://docs.urbit.org/manual/running/vere#chop\r\n");
exit(0); // enjoy
}

Expand Down

0 comments on commit 07e781a

Please sign in to comment.