Issue kinda solved, now onto the next issues

This commit is contained in:
Phuntsok Drak-pa 2018-11-12 14:44:52 +01:00
parent 71faf2cfd8
commit 819eff4446
2 changed files with 4 additions and 4 deletions

View File

@ -32,19 +32,19 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places. # title of most generated pages and in a few other places.
# The default value is: My Project. # The default value is: My Project.
PROJECT_NAME = "Image Taches" PROJECT_NAME = "Compression par surfaces unies"
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 0.9 PROJECT_NUMBER = 0.1
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short. # quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF = "Simple programme de détection de zones de couleur" PROJECT_BRIEF = "Programme de compression d'images par zones de couleurs similaires"
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55 # in the documentation. The maximum height of the logo should not exceed 55

View File

@ -18,7 +18,7 @@
*/ */
darray_t darrayNew(size_t t_element_size) { darray_t darrayNew(size_t t_element_size) {
darray_t ret; darray_t ret;
ret = (darray_t)malloc(sizeof(darray_t)); ret = (darray_t)malloc(sizeof(darray));
ret->begin = NULL; ret->begin = NULL;
ret->end = ret->begin; ret->end = ret->begin;
ret->element_size = t_element_size; ret->element_size = t_element_size;