diff options
author | ribet | 2008-01-16 11:01:23 +0000 |
---|---|---|
committer | ribet | 2008-01-16 11:01:23 +0000 |
commit | 26bc3729d0fc2ed0d1dce9fa526f7c724110c31c (patch) | |
tree | e3e255f7951a3580d4d65444b585b7a4e7c15ce1 /src | |
parent | 02e7e0cd76c2e017affe94e5e6b1b1a9f49ac116 (diff) | |
download | mtc-26bc3729d0fc2ed0d1dce9fa526f7c724110c31c.zip mtc-26bc3729d0fc2ed0d1dce9fa526f7c724110c31c.tar.gz mtc-26bc3729d0fc2ed0d1dce9fa526f7c724110c31c.tar.bz2 mtc-26bc3729d0fc2ed0d1dce9fa526f7c724110c31c.tar.xz |
Suppression du warning sur defined %option
Diffstat (limited to 'src')
-rw-r--r-- | src/MTools.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MTools.pm b/src/MTools.pm index 250b092..8da4277 100644 --- a/src/MTools.pm +++ b/src/MTools.pm @@ -760,7 +760,7 @@ sub minstanciate { $path -> chggroup ($parent); $retour = $path; } - if (defined %options) + if (%options != undef) { $retour -> mconfigure (%options); } |