mirror of
https://github.com/curl/curl.git
synced 2026-06-07 21:24:17 +03:00
adddocsref.pl: enable warnings, fix one
This commit is contained in:
parent
f5bd582e79
commit
ffc825c197
1 changed files with 4 additions and 1 deletions
|
|
@ -25,9 +25,12 @@
|
|||
|
||||
# pass files as argument(s)
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
my $docroot="https://curl.se/libcurl/c";
|
||||
|
||||
for $f (@ARGV) {
|
||||
for my $f (@ARGV) {
|
||||
open(NEW, ">$f.new");
|
||||
open(F, "<$f");
|
||||
while(<F>) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue