From d62341f615974257eac4125ab68be519efcf0a6e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 4 Mar 2025 05:20:58 +0100 Subject: CHORE&FEAT: Kernel/SCI: Lots of Chore and feat, see below. - Add traits for CmdListEntry in GPU's SCI. (GPU.h) - Set standard user directory as /user/ instead of /usr/. (User.cc/User.h) - Replace fSourcePid with fPID. (HardwareThreadScheduler.cc/HardwareThreadScheduler.h) --- public/tools/make_app/src/CommandLine.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'public/tools/make_app/src/CommandLine.cc') diff --git a/public/tools/make_app/src/CommandLine.cc b/public/tools/make_app/src/CommandLine.cc index 1858303b..bf435962 100644 --- a/public/tools/make_app/src/CommandLine.cc +++ b/public/tools/make_app/src/CommandLine.cc @@ -21,17 +21,17 @@ int main(int argc, char* argv[]) { if (MmStrCmp(argv[i], "-h") == 0) { - MsgAlloc(kAlertMsg); + MsgAlloc(kWarnMsg); - MsgSend(kAlertMsg, "%s", "make_app: Framework/Application Creation Tool.\n"); - MsgSend(kAlertMsg, "%s", "make_app: © Amlal EL Mahrouss, All rights reserved.\n"); + MsgSend(kWarnMsg, "%s", "make_app: Framework/Application Creation Tool.\n"); + MsgSend(kWarnMsg, "%s", "make_app: © Amlal EL Mahrouss, All rights reserved.\n"); - MsgSend(kAlertMsg, "%s", "make_app: -a: Application format.\n"); - MsgSend(kAlertMsg, "%s", "make_app: -s: Steps (Setup pages) format.\n"); - MsgSend(kAlertMsg, "%s", "make_app: -f: Framework format.\n"); + MsgSend(kWarnMsg, "%s", "make_app: -a: Application format.\n"); + MsgSend(kWarnMsg, "%s", "make_app: -s: Steps (Setup pages) format.\n"); + MsgSend(kWarnMsg, "%s", "make_app: -f: Framework format.\n"); - MsgShow(kAlertMsg); - MsgFree(kAlertMsg); + MsgShow(kWarnMsg); + MsgFree(kWarnMsg); return EXIT_SUCCESS; } -- cgit v1.2.3