[Home]

Summary:ASTERISK-01906: Zaptel variable type mismatch
Reporter:cursor_software (cursor_software)Labels:
Date Opened:2004-06-26 17:31:33Date Closed:2008-06-07 10:43:09
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:The local_local_save/restore is being passed a "long" used instead of an "unsigned long".  This patch cleans that up.


****** ADDITIONAL INFORMATION ******

--- zaptel.c    21 Jun 2004 17:33:36 -0000      1.81
+++ zaptel.c    26 Jun 2004 17:51:32 -0000
@@ -5991,7 +5991,7 @@
static void watchdog_check(unsigned long ignored)
{
       int x;
-       long flags;
+       unsigned long flags;
       static int wdcheck=0;

       local_irq_save(flags);
Comments:By: Mark Spencer (markster) 2004-06-26 18:55:32

Fixed in CVS

By: Digium Subversion (svnbot) 2008-06-07 10:43:09

Repository: dahdi
Revision: 426

U   trunk/zaptel.c

------------------------------------------------------------------------
r426 | markster | 2008-06-07 10:43:08 -0500 (Sat, 07 Jun 2008) | 2 lines

Fix zaptel watchdog type mismatch (bug ASTERISK-1906)

------------------------------------------------------------------------

http://svn.digium.com/view/dahdi?view=rev&revision=426