From 1b37f5965d8bc1dbec33e18ba806351ccbeca092 Mon Sep 17 00:00:00 2001 From: Icinger <> Date: Sun, 21 Jan 2018 08:18:29 +0000 Subject: [PATCH] 47_OBIS: Fix for warning for 64bit-integers git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@15943 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/47_OBIS.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/FHEM/47_OBIS.pm b/FHEM/47_OBIS.pm index 96c7dd4f3..3d94c9282 100644 --- a/FHEM/47_OBIS.pm +++ b/FHEM/47_OBIS.pm @@ -12,14 +12,13 @@ package main; -no warnings 'portable'; # Support for 64-bit ints required -#use bigint qw/hex/; -no warnings qw(overflow portable); use strict; use warnings; use Time::HiRes qw(gettimeofday usleep); use Scalar::Util qw(looks_like_number); use POSIX qw{strftime}; +no warnings 'portable'; # Support for 64-bit ints required +#use Math::BigInt ':constant'; my %OBIS_channels = ( "21" =>"power_L1", "41" =>"power_L2",