Fix struct fields order for SANE_Parameters to match actual standard and code.

merge-requests/1/head
Julien BLACHE 2008-05-03 19:02:44 +00:00
rodzic 9ecf0b0bc1
commit 4e71300696
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -360,10 +360,10 @@ typedef struct
{ {
SANE_Frame format; SANE_Frame format;
SANE_Bool last_frame; SANE_Bool last_frame;
SANE_Int bytes_per_line;
SANE_Int pixels_per_line;
SANE_Int lines; SANE_Int lines;
SANE_Int depth; SANE_Int depth;
SANE_Int pixels_per_line;
SANE_Int bytes_per_line;
} }
SANE_Parameters; SANE_Parameters;
</pre> </pre>