Skip to content

Commit

Permalink
changed error message in blocksize.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Moshix committed Jun 25, 2017
1 parent 9b10503 commit 32ee0ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blocksize.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ func main() {

if dasd == "" { // no dasd type was input
fmt.Println("\nBLK205R No DASD type entered. ")
fmt.Println("BLK206R pls enter DASD type or restart with -h for list of DASD types")
fmt.Println("\nBLK206R pls enter DASD type or restart with -h for list of DASD types")
fmt.Scan(&dasd)
}
if lrecl == 0 { // no lrecl was input

fmt.Printf("\nBLK201R lrecl command line argument is not included.\n")
fmt.Println("BLK202R Please enter lrecl length: ")
fmt.Println("\nBLK202R Please enter lrecl length: ")
fmt.Scan(&lrecl)
}
if *helpPtr { // user asked for help
Expand Down

0 comments on commit 32ee0ee

Please sign in to comment.