Menu

#2 Build error with sequencer.so.c

closed-fixed
Build (2)
5
2004-06-18
2004-05-08
No

I get the following error when I compile:

sequencer.so.c: In function `_init':
sequencer.so.c:228: parse error before `char'
sequencer.so.c:234: `label' undeclared (first use in
this function)
sequencer.so.c:234: (Each undeclared identifier is
reported only once
sequencer.so.c:234: for each function it appears in.)
sequencer.so.c:235: `name' undeclared (first use in
this function)
sequencer.so.c:236: `loop_point_label' undeclared
(first use in this function)
sequencer.so.c:295: `value_label' undeclared (first use
in this function)

gcc --version = 2.95.3

Discussion

  • Mike Rawes

    Mike Rawes - 2004-06-10

    Logged In: YES
    user_id=540366

    (Damn, I must find a way to turn on email notifications for
    these - over a month!)

    To fix:
    in _init, move the following declarations to the top of the
    function (just below char **port_names; will do)

    char label[12];
    char name[33];
    char loop_point_label[20];
    char value_label[14];

    or checkout the CVS, which fixes this bug and a fair few
    others.

    -
    Myk

     
  • Mike Rawes

    Mike Rawes - 2004-06-18
    • assigned_to: nobody --> waxfrenzy
    • status: open --> closed-fixed
     
  • Mike Rawes

    Mike Rawes - 2004-06-18

    Logged In: YES
    user_id=540366

    Fixed with release 0.2.8

     

Log in to post a comment.