Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
derf
feh
Commits
b5e94bec
Commit
b5e94bec
authored
4 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
X11 uses unsigned long int for window IDs (see X11/X.h)
parent
4956bba4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/options.c
+1
-1
1 addition, 1 deletion
src/options.c
src/options.h
+1
-1
1 addition, 1 deletion
src/options.h
with
2 additions
and
2 deletions
src/options.c
+
1
−
1
View file @
b5e94bec
...
...
@@ -835,7 +835,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
opt
.
use_conversion_cache
=
0
;
break
;
case
251
:
opt
.
x11_windowid
=
ato
i
(
optarg
);
opt
.
x11_windowid
=
ato
l
(
optarg
);
break
;
default:
break
;
...
...
This diff is collapsed.
Click to expand it.
src/options.h
+
1
−
1
View file @
b5e94bec
...
...
@@ -130,7 +130,7 @@ struct __fehoptions {
unsigned
char
adjust_reload
;
int
xinerama_index
;
char
*
x11_class
;
unsigned
int
*
x11_windowid
;
unsigned
long
int
x11_windowid
;
/* signed in case someone wants to invert scrolling real quick */
int
scroll_step
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment