[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: o_selection.c
User: pcjc2
Date: 06/12/21 15:40:38
Modified: . o_selection.c
Log:
Update the interface to o_selection_print_all() to match other
o_selection*() functions. Patch from Peter Brett.
Revision Changes Path
1.10 +3 -3 eda/geda/gaf/libgeda/src/o_selection.c
(In the diff below, changes in quantity of whitespace are not shown.)
Index: o_selection.c
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/libgeda/src/o_selection.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- o_selection.c 21 Dec 2006 20:09:47 -0000 1.9
+++ o_selection.c 21 Dec 2006 20:40:38 -0000 1.10
@@ -60,14 +60,14 @@
/*! \brief Prints the given selection list.
* \par Prints the given selection list.
- * \param [in] head Selection list to print.
+ * \param [in] head Pointer to selection list to print.
*
*/
-void o_selection_print_all( GList *head )
+void o_selection_print_all(const GList **head)
{
GList *s_current;
- s_current = head;
+ s_current = *head;
printf("START printing selection ********************\n");
while(s_current != NULL) {
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs