Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c158bb2

Browse files
committed
Minor clarficiations in the dialogs about which errno file is wanted when (I had also forgotten:-).
1 parent 07d69f6 commit c158bb2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mac/scripts/mkestrres.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ def parse_errors_h(fp, dict):
102102

103103
def main():
104104
dict = {}
105-
fss, ok = macfs.PromptGetFile("Where is errno.h?")
105+
fss, ok = macfs.PromptGetFile("Where is GUSI sys/errno.h?")
106106
if not ok: return
107107
fp = open(fss.as_pathname())
108108
parse_errno_h(fp, dict)
109109
fp.close()
110110

111-
fss, ok = macfs.PromptGetFile("Select 2nd errno.h or cancel")
111+
fss, ok = macfs.PromptGetFile("Select 2nd errno.h (MSL) or cancel")
112112
if not ok: return
113113
fp = open(fss.as_pathname())
114114
parse_errno_h(fp, dict)

0 commit comments

Comments
 (0)