gprofng: change use of bignum to use of bigint

Message ID 20240227183233.2589082-1-ruud.vanderpas@oracle.com
State Unresolved
Headers
Series gprofng: change use of bignum to use of bigint |

Checks

Context Check Description
snail/binutils-gdb-check warning Git am fail log

Commit Message

Ruud van der Pas Feb. 27, 2024, 6:32 p.m. UTC
  From: Ruud van der Pas <ruud.vanderpas@oracle.com>

Change the statement "use bignum" to "use bigint".  This is sufficient
for gp-display-html to work and removes the dependency on bignum.

gprofng/ChangeLog
2024-02-27  Ruud van der Pas  <ruud.vanderpas@oracle.com>

	PR 31390
	* gprofng/gp-display-html: One line change to "use bigint".
---
 gprofng/gp-display-html/gp-display-html.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gprofng/gp-display-html/gp-display-html.in b/gprofng/gp-display-html/gp-display-html.in
index 6f37ca282e7..306c99a0ec3 100644
--- a/gprofng/gp-display-html/gp-display-html.in
+++ b/gprofng/gp-display-html/gp-display-html.in
@@ -25,7 +25,7 @@  use warnings;
 # Disable before release
 # use Perl::Critic;
 
-use bignum;
+use bigint;
 use List::Util qw (max);
 use Cwd qw (abs_path cwd);
 use File::Basename;