Skip to content

Commit 06dfb35

Browse files
authored
Merge branch 'X11Libre:master' into clang
2 parents adbcd75 + e00b4b5 commit 06dfb35

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

hw/xfree86/drivers/video/modesetting/driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ static const OptionInfoRec Options[] = {
159159

160160
int ms_entity_index = -1;
161161

162-
DevPrivateKeyRec asyncFlipPrivateKeyRec;
162+
static DevPrivateKeyRec asyncFlipPrivateKeyRec;
163163

164164
static MODULESETUPPROTO(Setup);
165165

os/utils.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,12 @@ ProcessCommandLine(int argc, char *argv[])
600600
else
601601
UseMsg();
602602
}
603+
else if (strcmp(argv[i],"-noreset") == 0){
604+
ErrorF("Argument -noreset is removed in XLibre (for more context: https://github.com/orgs/X11Libre/discussions/424 )\n");
605+
}
606+
else if(strcmp(argv[i],"-reset") == 0){
607+
ErrorF("Argument -reset is removed in XLibre (for more context: https://github.com/orgs/X11Libre/discussions/424 )\n");
608+
}
603609
else if (strcmp(argv[i], "-p") == 0) {
604610
if (++i < argc)
605611
defaultScreenSaverInterval = ((CARD32) atoi(argv[i])) *

0 commit comments

Comments
 (0)