Ticket #781 (new Bug)
Opened 12 months ago
enki is missing upload_add function body in upload.c
| Reported by: | zwierz@… | Owned by: | |
|---|---|---|---|
| Priority: | Major | Milestone: | |
| Component: | other | Keywords: | enki e17 |
| Cc: | Blocked By: | ||
| Blocking: |
Description
There is an linker problem:
CCLD enki
netsync_album.o: In function `_photos_notinnetsync_cb': netsync_album.c:(.text+0x1a9e): undefined reference to `upload_add' collect2: ld returned 1 exit status
I went through the code and saw that: grep upload upload.h
Upload *upload_new(Evas_Object *parent); void upload_free(Upload _ul); void upload_add(Upload *ul, void upload_album_create_add(Upload *ul,
grep upload upload.c #include "upload.h" upload_new(Evas_Object *parent) upload_free(Upload _ul) upload_start(Upload *ul, upload_done(Upload *ul,
So there is upload_add and upload_start upload_done. Propably upload_add should use upload_start and upload done?
