diff --git a/makefile b/makefile index 43d7880a..6b852e9b 100644 --- a/makefile +++ b/makefile @@ -87,9 +87,7 @@ else endif find_lib = $(abspath $(strip $(firstword $(foreach dir,$(strip $(LIBPATH)),$(wildcard $(dir)/lib$(1).$(LIBEXT)))))) find_include = $(abspath $(strip $(firstword $(foreach dir,$(strip $(INCPATH)),$(wildcard $(dir)/$(1).h))))) -$(info OS=$(OS)) ifneq ($(findstring Windows,$(OS)),) - $(info SHELL=$(SHELL)) ifeq ($(findstring .exe,$(SHELL)),.exe) # MinGW WIN32 := 1 diff --git a/scp.c b/scp.c index 5f72ba69..e70979a3 100644 --- a/scp.c +++ b/scp.c @@ -9265,12 +9265,13 @@ if (snd->extoff < snd->insoff) { } else fprintf (st, "No Pending Input Data\n"); -if ((snd->next_time - sim_gtime()) > 0) +if ((snd->next_time - sim_gtime()) > 0) { if ((snd->next_time - sim_gtime()) > (sim_timer_inst_per_sec()/1000000.0)) - fprintf (st, "Minimum of %d instructions (%d microseconds) befor sending first character\n", (int)(snd->next_time - sim_gtime()), + fprintf (st, "Minimum of %d instructions (%d microseconds) before sending first character\n", (int)(snd->next_time - sim_gtime()), (int)((snd->next_time - sim_gtime())/(sim_timer_inst_per_sec()/1000000.0))); else - fprintf (st, "Minimum of %d instructions befor sending first character\n", (int)(snd->next_time - sim_gtime())); + fprintf (st, "Minimum of %d instructions before sending first character\n", (int)(snd->next_time - sim_gtime())); + } if (snd->delay > (sim_timer_inst_per_sec()/1000000.0)) fprintf (st, "Minimum of %d instructions (%d microseconds) between characters\n", (int)snd->delay, (int)(snd->delay/(sim_timer_inst_per_sec()/1000000.0))); else