<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#cccccc" text="#000000">
    I got an error while compiling universal.c with Visual Studio.  The
    compiler didn't like the following line:<br>
    <br>
        device_data_t devdata = {0};<br>
    <br>
    in dowork().<br>
    <br>
    I changed it to:<br>
    <br>
        device_data_t devdata;<br>
        memchr(&devdata, 0, sizeof(devdata));<br>
    <br>
    and now everything compiles cleanly.  <br>
    <br>
    Thought you should know.<br>
    <br>
    <br>
  </body>
</html>