~ubuntu-branches/ubuntu/utopic/vice/utopic-proposed

« back to all changes in this revision

Viewing changes to src/serial/serial-iec-lib.c

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2014-05-10 21:08:23 UTC
  • mfrom: (17.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140510210823-v5aojvy1pv1sg132
Tags: 2.4.dfsg+2.4.6-1ubuntu1
Use autotools-dev to update config.{sub,guess} for new arches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
    serial_iec_open(unit, 2, "#", (unsigned int)strlen("#"));
72
72
    serial_iec_open(unit, 15, command, (unsigned int)strlen(command));
73
73
 
74
 
    for (i = 0; i < 256; i++)
 
74
    for (i = 0; i < 256; i++) {
75
75
        serial_iec_read(unit, 2, &buf[i]);
 
76
    }
76
77
 
77
78
    serial_iec_close(unit, 15);
78
79
    serial_iec_close(unit, 2);
87
88
{
88
89
    return 0;
89
90
}
90