Thread Frage zu "use strict;" (2 answers)
Opened by docsnyder at 2006-10-23 12:21

pq
 2006-10-23 12:33
#71070 #71070
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
[quote=docsnyder,23.10.2006, 10:21]Zeile 182 ist

Code: (dl )
$lockHandles{$lockFile} = FD if ( ($rc=flock(FD, LOCK_EX | LOCK_NB)) );
[/quote]
du musst perl auch sagen, dass das ein filehandle ist.
in flock() und anderen funktionen weiss perl das.
Code: (dl )
$lockHandles{$lockFile} = *FD if $rc=flock(FD, LOCK_EX | LOCK_NB);
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Frage zu "use strict;"