Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3b5fb27f
Commit
3b5fb27f
authored
Sep 20, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winapi: Small tweaks to fix perl warnings.
perl says defined(@array) is deprecated.
parent
24fbe9f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
options.pm
tools/winapi/options.pm
+3
-3
No files found.
tools/winapi/options.pm
View file @
3b5fb27f
...
...
@@ -414,7 +414,7 @@ sub c_files($) {
my
$c_files
=
\
@
{
$self
->
{
_C_FILES
}};
if
(
!
defined
(
@$c_files
)
)
{
if
(
!
@$c_files
)
{
$self
->
parse_files
;
}
...
...
@@ -426,7 +426,7 @@ sub h_files($) {
my
$h_files
=
\
@
{
$self
->
{
_H_FILES
}};
if
(
!
defined
(
@$h_files
)
)
{
if
(
!
@$h_files
)
{
$self
->
parse_files
;
}
...
...
@@ -438,7 +438,7 @@ sub directories($) {
my
$directories
=
\
@
{
$self
->
{
_DIRECTORIES
}};
if
(
!
defined
(
@$directories
)
)
{
if
(
!
@$directories
)
{
$self
->
parse_files
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment