Bugs item #3600993, was opened at 2013-01-15 08:31
Message generated for change (Tracker Item Submitted) made by sjtappin
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102915&aid=3600993&group_id=2915

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: James Tappin (sjtappin)
Assigned to: Nobody/Anonymous (nobody)
Summary: Interface for plstyl in f95 binding is incorrect

Initial Comment:
The interface for plstyl in sfstubsf95.f90 is currently:

861     interface
862     subroutine plstyl( n, mark, space )
863     integer :: n, mark, space
864     end subroutine plstyl
865     end interface

However, it should take arrays for mark and space, so I think it should be 
either:
interface 
    subroutine plstyl( n, mark, space )
       integer :: n
       integer, dimension(n) :: mark, space
   end subroutine plstyl
end interface

or (better) provide a wrapper so that is appeas to be

interface 
    subroutine plstyl(mark, space )
       integer, dimension(:) :: mark, space
   end subroutine plstyl
end interface



----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102915&aid=3600993&group_id=2915

------------------------------------------------------------------------------
Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS
and more. Get SQL Server skills now (including 2012) with LearnDevNow -
200+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only - learn more at:
http://p.sf.net/sfu/learnmore_122512
_______________________________________________
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel

Reply via email to