Cool, I like this.

Regards,

--
- DongInn

On Jun 26, 2013, at 12:06 PM, olivier.lah...@cea.fr wrote:

> Author: olahaye74
> Date: 2013-06-26 12:06:33 EDT (Wed, 26 Jun 2013)
> New Revision: 10020
> URL: https://svn.oscar.openclustergroup.org/trac/oscar/changeset/10020
> 
> Log:
> [oscar-select:SelectorCommon.pm] Fix "error Using a hash as a reference is 
> deprecated"
> using tips from 
> http://stackoverflow.com/questions/6265673/perl-using-a-hash-as-a-reference-is-deprecated
> 
> Text files modified: 
>   pkgsrc/selector/trunk/lib/SelectorCommon.pm |     2 +-                      
>                 
>   1 files changed, 1 insertions(+), 1 deletions(-)
> 
> Modified: pkgsrc/selector/trunk/lib/SelectorCommon.pm
> ==============================================================================
> --- pkgsrc/selector/trunk/lib/SelectorCommon.pm       Wed Jun 26 11:56:30 
> 2013        (r10019)
> +++ pkgsrc/selector/trunk/lib/SelectorCommon.pm       2013-06-26 12:06:33 EDT 
> (Wed, 26 Jun 2013)      (r10020)
> @@ -51,7 +51,7 @@
>         $class = "all";
>     }
> 
> -    if (!defined %known_classes->{$class}) {
> +    if (!defined $known_classes{$class}) {
>         carp "ERROR: Unknown class $class\n".
>              "Available class: core, included, third party, all\n";
>         return -1;
> 
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by Windows:
> 
> Build for Windows Store.
> 
> http://p.sf.net/sfu/windows-dev2dev
> _______________________________________________
> Oscar-checkins mailing list
> oscar-check...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/oscar-checkins


------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Oscar-devel mailing list
Oscar-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oscar-devel

Reply via email to