Changeset 255


Ignore:
Timestamp:
Sep 26, 2007, 7:02:08 AM (18 years ago)
Author:
Brendan Oakley
Message:

One more compile warning on uniaud16

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OCO/trunk/drv16/irq.cpp

    r134 r255  
    2424#include <devhelp.h>
    2525#include <include.h>
    26 #include <string.h>                    // memset()
     26#include <string.h>                    // memset(), _fmemset()
    2727#include "irq.hpp"                     // Object definition
    2828
     
    103103IRQ::IRQ( unsigned irq_level )
    104104{
    105    // fixme to know if should be _fmemset?
    106    memset( (PVOID) this, 0, sizeof(IRQ) );     // Set all data to 0.
     105   // fixme to know if should be _fmemset or memset?
     106   _fmemset( (PVOID) this, 0, sizeof(IRQ) );     // Set all data to 0.
    107107   _usIRQLevel = irq_level;
    108108   pIrqObject[ _usIRQLevel ] = this;
Note: See TracChangeset for help on using the changeset viewer.