Description: fix logl recursion
 Already fixed upstream.
 .
 cbmc (5.95.1-2) unstable; urgency=low
 .
   * Fix portability problems
Author: Michael Tautschnig <mt@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2024-02-16

--- cbmc-5.95.1.orig/src/ansi-c/library/math.c
+++ cbmc-5.95.1/src/ansi-c/library/math.c
@@ -2821,7 +2821,7 @@ long double logl(long double x)
   }
 
 #if LDBL_MAX_EXP == DBL_MAX_EXP
-  return logl(x);
+  return log(x);
 #else
   _Static_assert(
     sizeof(long double) % sizeof(int32_t) == 0,
