diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-22 14:50:30 +0100 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-22 14:50:30 +0100 | 
| commit | 2394a74289fabb7592cf42a9311b990aa940e8fc (patch) | |
| tree | dce27d580b05839c2b7c7f4476eb0fed99c3bf4e | |
| parent | 056285549ff8bef971685bdbab5c71c8e4598c70 (diff) | |
| download | toolame-dab-2394a74289fabb7592cf42a9311b990aa940e8fc.tar.gz toolame-dab-2394a74289fabb7592cf42a9311b990aa940e8fc.tar.bz2 toolame-dab-2394a74289fabb7592cf42a9311b990aa940e8fc.zip  | |
Add return value to zmqoutput_write_byte
| -rw-r--r-- | zmqoutput.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/zmqoutput.c b/zmqoutput.c index 5cf85ec..cc8937e 100644 --- a/zmqoutput.c +++ b/zmqoutput.c @@ -51,8 +51,12 @@ int zmqoutput_write_byte(Bit_stream_struc *bs, unsigned char data)          }          zmqbuf_len = 0; + +        return bs->zmq_framesize;      } +    return 0; +  }  void zmqoutput_close(Bit_stream_struc *bs)  | 
